CREPL: An Arithmetic Expression Interpreter Arithmetic expression interpreter with a REPL. Implemented a simple pratt parser (formerly a recursive descent parser). Example: >>> -(3 + 4) ^ 3 = -343.00 >>> 1 + 2 * 3 = 7.00 >>> 2 ^ 3 ^ 2 = 512.00 >>>