cyclocalc Simple mathematical expression evaluator based on Pratt Parsing. Supported operators: Arithmetic: + - * / % Bitwise: | & ^ << >> Parentheses: ( ) build make cyclocalc usage ./cyclocalc "6 * (3 + 4)" repl: $ ./cyclocalc (calc)> 6 * (3 + 4) 42 (calc)>