Lox Interpreter/REPL written in Rust.
git checkout https://github.com/rodaine/rlox.git
cd rlox
cargo install
rlox # starts the REPL
rlox script.lox # interprets the file
# linting - clippy is somewhat unstable
rustup run nightly cargo install clippy
rustup run nightly cargo clippy
# unit tests
cargo test --verbose