Skip to content
This repository has been archived by the owner on Feb 28, 2023. It is now read-only.

Latest commit

 

History

History
27 lines (19 loc) · 556 Bytes

README.md

File metadata and controls

27 lines (19 loc) · 556 Bytes

rlox Build Status

Lox Interpreter/REPL written in Rust.

Install

git checkout https://github.com/rodaine/rlox.git
cd rlox
cargo install

rlox            # starts the REPL
rlox script.lox # interprets the file

Development

# linting - clippy is somewhat unstable
rustup run nightly cargo install clippy
rustup run nightly cargo clippy

# unit tests
cargo test --verbose