A simple LISP-like interpreter written in Rust as a part of the Programming 1 course at MFF CUNI.
Available here.
If you run lisper
, you will be thrown into a REPL where you can try out the language.
To run a file containing Lisper code, run lisper <path to file>
. You can check out the examples
folder.
You will need the Rust toolchain
to compile this codebase. This will install cargo
, the Rust package manager.
Run cargo build
to build an executable. No environment variables are needed.
Run cargo run
to run the program.