LICENSE
MANIFEST.in
README.md
pyproject.toml
requirements.txt
requirements_dev.txt
setup.cfg
setup.py
tox.ini
versioneer.py
Celeratas/__init__.py
Celeratas/__main__.py
Celeratas/_version.py
Celeratas/shell.py
Celeratas.egg-info/PKG-INFO
Celeratas.egg-info/SOURCES.txt
Celeratas.egg-info/dependency_links.txt
Celeratas.egg-info/entry_points.txt
Celeratas.egg-info/requires.txt
Celeratas.egg-info/top_level.txt
Celeratas/helper/__init__.py
Celeratas/helper/convert_roman.py
Celeratas/helper/errors.py
Celeratas/helper/grammar.txt
Celeratas/helper/tokens.py
Celeratas/interpreter/Context.py
Celeratas/interpreter/Interpreter.py
Celeratas/interpreter/RTResult.py
Celeratas/interpreter/SymbolTable.py
Celeratas/interpreter/__init__.py
Celeratas/interpreter/constants.py
Celeratas/interpreter/values/Bool.py
Celeratas/interpreter/values/Dict.py
Celeratas/interpreter/values/List.py
Celeratas/interpreter/values/Number.py
Celeratas/interpreter/values/String.py
Celeratas/interpreter/values/Value.py
Celeratas/interpreter/values/__init__.py
Celeratas/interpreter/values/functions/BaseFunction.py
Celeratas/interpreter/values/functions/BuiltInFunction.py
Celeratas/interpreter/values/functions/Function.py
Celeratas/interpreter/values/functions/__init__.py
Celeratas/lexer/Lexer.py
Celeratas/lexer/Position.py
Celeratas/lexer/Token.py
Celeratas/lexer/__init__.py
Celeratas/lexer/constants.py
Celeratas/parser/ParseResult.py
Celeratas/parser/Parser.py
Celeratas/parser/__init__.py
Celeratas/parser/nodes.py
tests/interpreter_test.py
tests/lexer_test.py
tests/parser_test.py