├── .gitignore ├── LICENSE ├── README.md ├── interpreter.py ├── interpreter_test.py ├── lexer.py ├── lexer_test.py ├── main.py ├── nodes.py ├── parser_.py ├── parser_test.py ├── tokens.py └── values.py /.gitignore: -------------------------------------------------------------------------------- 1 | /__pycache__ 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidcallanan/py-simple-math-interpreter/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidcallanan/py-simple-math-interpreter/HEAD/README.md -------------------------------------------------------------------------------- /interpreter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidcallanan/py-simple-math-interpreter/HEAD/interpreter.py -------------------------------------------------------------------------------- /interpreter_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidcallanan/py-simple-math-interpreter/HEAD/interpreter_test.py -------------------------------------------------------------------------------- /lexer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidcallanan/py-simple-math-interpreter/HEAD/lexer.py -------------------------------------------------------------------------------- /lexer_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidcallanan/py-simple-math-interpreter/HEAD/lexer_test.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidcallanan/py-simple-math-interpreter/HEAD/main.py -------------------------------------------------------------------------------- /nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidcallanan/py-simple-math-interpreter/HEAD/nodes.py -------------------------------------------------------------------------------- /parser_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidcallanan/py-simple-math-interpreter/HEAD/parser_.py -------------------------------------------------------------------------------- /parser_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidcallanan/py-simple-math-interpreter/HEAD/parser_test.py -------------------------------------------------------------------------------- /tokens.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidcallanan/py-simple-math-interpreter/HEAD/tokens.py -------------------------------------------------------------------------------- /values.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidcallanan/py-simple-math-interpreter/HEAD/values.py --------------------------------------------------------------------------------