Skip to content

Latest commit

 

History

History
25 lines (16 loc) · 446 Bytes

README.md

File metadata and controls

25 lines (16 loc) · 446 Bytes

RLox

RLox is an interpreter for the Lox programming language. The language was designed by Robert Nystrom for his book, Crafting Interpreters.

Running the interpreter

To run the interpreter, simply clone the repository and use cargo to build and run the project.

To run a REPL:

cargo run

To Run a file:

cargo run [filename]

unit tests

cargo test --verbose