An open API service indexing awesome lists of open source software.

https://github.com/alphabetsalphabets/kalculator

It's calculator with a 'K'
https://github.com/alphabetsalphabets/kalculator

calculator lexical-analyzer rust rust-lang

Last synced: 3 months ago
JSON representation

It's calculator with a 'K'

Awesome Lists containing this project

README

        

# Kalculator
A calculator made in C++ with operator precedence.

# Limitations
1. The following expressions with parenthesis don't work.
- `1 + ((2^2)^2)`
- `((2^2)^2)`
2. Negatives. Such as `- 1 + 2`. The calculator will assume `-` as an `Operand`. This is due to the way things are set.
3. Decimal exponents don't work either.