sammal

A toy Lisp interpreter for a compilers class.

Dependencies

Build

mix deps.get
mix escript.build
./sammal [-c "(some command)"] [-i] [./some_source_file.sammal]

# Examples:
./sammal -c "(def multiply (x y) (* x y)) (display (multiply 2 3))"

Test

mix test to run tests, or mix test.watch to automatically run tests, optional type checks and linter on file changes.

TODO