Simple command line based interpreter written in c++
This is a pure learning project, no AI, not too much internet help, mostly just suffering -> experimenting -> learning
First goal is to be able to eval simple math expressions with support for parentheses
- Lexer working with rough token categories
- Math parser working for fully‑parenthesized or operator‑separated positive expressions with no leading/trailing operators
- Math evaluator working for all operators supported by parser for now