digitalmars.D.announce - Command line calculator in D
- Alireza SN (5/5) May 06 2020 I was learning about an algorithm called 'Pratt Parser' and
- Joel (2/7) May 09 2020 Cool - handy for inputs boxes (like in GUI's).
- Joel (3/8) May 09 2020 Can you add something like 'string result =
- Alireza SN (2/6) May 09 2020
- Joel (2/8) May 10 2020 Thanks Alireza SN :-)
- Guillaume Piolat (2/7) May 09 2020 Could you add "exp" ? :)
- Alireza SN (2/3) May 09 2020 I added it 😃
- Guillaume Piolat (2/6) May 09 2020 Thanks ^^
- Jack Applegame (7/12) May 14 2020 Nice!
I was learning about an algorithm called 'Pratt Parser' and decided to write a cli calculator with it. Here is the link if you want to check it out: https://github.com/TheWeirdDev/Calcool Feel free to point out any mistakes i have made.
May 06 2020
On Wednesday, 6 May 2020 at 11:47:55 UTC, Alireza SN wrote:I was learning about an algorithm called 'Pratt Parser' and decided to write a cli calculator with it. Here is the link if you want to check it out: https://github.com/TheWeirdDev/Calcool Feel free to point out any mistakes i have made.Cool - handy for inputs boxes (like in GUI's).
May 09 2020
On Wednesday, 6 May 2020 at 11:47:55 UTC, Alireza SN wrote:I was learning about an algorithm called 'Pratt Parser' and decided to write a cli calculator with it. Here is the link if you want to check it out: https://github.com/TheWeirdDev/Calcool Feel free to point out any mistakes i have made.Can you add something like 'string result = evaluateFromString("(1+2)/2");'?
May 09 2020
On Saturday, 9 May 2020 at 10:38:08 UTC, Joel wrote:Can you add something like 'string result = evaluateFromString("(1+2)/2");'?You can do that now :)auto p = new Prser(); string result = p.evaluateFromString("(1+2)/2");
May 09 2020
On Saturday, 9 May 2020 at 19:25:44 UTC, Alireza SN wrote:On Saturday, 9 May 2020 at 10:38:08 UTC, Joel wrote:Thanks Alireza SN :-)Can you add something like 'string result = evaluateFromString("(1+2)/2");'?You can do that now :)auto p = new Prser(); string result = p.evaluateFromString("(1+2)/2");
May 10 2020
On Wednesday, 6 May 2020 at 11:47:55 UTC, Alireza SN wrote:I was learning about an algorithm called 'Pratt Parser' and decided to write a cli calculator with it. Here is the link if you want to check it out: https://github.com/TheWeirdDev/Calcool Feel free to point out any mistakes i have made.Could you add "exp" ? :)
May 09 2020
On Saturday, 9 May 2020 at 13:17:39 UTC, Guillaume Piolat wrote:Could you add "exp" ? :)I added it 😃
May 09 2020
On Saturday, 9 May 2020 at 19:26:35 UTC, Alireza SN wrote:On Saturday, 9 May 2020 at 13:17:39 UTC, Guillaume Piolat wrote:Thanks ^^Could you add "exp" ? :)I added it 😃
May 09 2020
On Wednesday, 6 May 2020 at 11:47:55 UTC, Alireza SN wrote:I was learning about an algorithm called 'Pratt Parser' and decided to write a cli calculator with it. Here is the link if you want to check it out: https://github.com/TheWeirdDev/Calcool Feel free to point out any mistakes i have made.Nice! It reminded me of my old similar project. Today I published it on GitHub and registered in the DUB package registry. GitHub: https://github.com/japplegame/expression DUB: https://code.dlang.org/packages/expression
May 14 2020