Rust implementation of a dependently typed λ-calculus.
The interpreter is based on ideas from the following sources:
- Löh, McBride, Swierstra / Simply Easy! (revised version)
- Augustsson / Simpler, Easier!
You can install both with the following:
$ curl -s https://static.rust-lang.org/rustup.sh | sudo sh
See Installing Rust for further details.
$ cargo build ## build library and binary
$ cargo run ## run binary (does nothing useful yet)
$ cargo test ## run tests in ./tests
$ cargo bench ## run benchmarks in ./benches