- Implementation of Lox interpreter from the book Crafting Interpreters.
- Rust implementation based on tdp2110/crafting-interpreters-rs project.
- Syntax of the Lox language can be found here.
- Lexical analysis
- Syntax analysis
- ...
- run the interpreter
cargo run -- ./test/fib.lox
- run the interpreter, and show all scanned tokens
cargo run -- --show-tokens ./test/fib.lox