RLox is an interpreter for the Lox programming language. The language was designed by Robert Nystrom for his book, Crafting Interpreters.
To run the interpreter, simply clone the repository and use cargo to build and run the project.
To run a REPL:
cargo runTo Run a file:
cargo run [filename]cargo test --verbose