Skip to content

Latest commit

 

History

History
26 lines (14 loc) · 697 Bytes

README.md

File metadata and controls

26 lines (14 loc) · 697 Bytes

Lisper

A simple LISP-like interpreter written in Rust as a part of the Programming 1 course at MFF CUNI.

Docs

Available here.

Run

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.

Development setup

You will need the Rust toolchain to compile this codebase. This will install cargo, the Rust package manager.

Building

Run cargo build to build an executable. No environment variables are needed.

Running from source

Run cargo run to run the program.