Skip to content

Latest commit

 

History

History
25 lines (14 loc) · 494 Bytes

README.md

File metadata and controls

25 lines (14 loc) · 494 Bytes

crispy

Lisp interpreter written in Rust. It supports subset of Scheme dialect for Rust. Easily extendable to support full Scheme dialect.

CLI

You can start LISP repl with following command.

$ cargo run --release --bin repl

You can parse lisp file with following command.

$ cargo run --release --bin cli -- <path_to_lisp_file>

Example usage

Tests

To run tests use:

$ cargo test