The fifth version of mate.
- Added high-level error handling and errors: see in docs
- Implemented functionality to parse and calculate absolute-value expressions.
The fourth version of mate. Implemented functionality to parse and calculate power expressions.
-
Pull Request: #20
-
H-E that versions has ability to solve:
5 ^ 2
->25
The third version of mate. Implemented functionality to understood and auto-append multiplication between two number(normal number & sub-expression) tokens.
- Pull Request: #19
H-E that version has ability to solve:
4(9 + 5)(9 - 3)
->336
The second version of mate. Implemented the new percentage token. Which means besides of addition, subtraction, division, and multiplication. Now, it can parse and calculate percentage expressions.
- Pull Request: #18
H-E that version has ability to solve:
50 % 5 + (100 % 2.5)
->5
The very first version of mate. Has ability to parse simple arithmetic expressions(addition, subtraction, division, and multiplication) + nested expressions with parentheses.
H-E that version has ability to solve:
5 + (2 + (10 - (2.5 + 2.5))) * (5 - 9 / (8 - (2.5 * 2)))
->19