Skip to content

Latest commit

 

History

History
26 lines (21 loc) · 2.19 KB

README.md

File metadata and controls

26 lines (21 loc) · 2.19 KB

Lox-rs Build Status

A Lox Interpreter in Rust based on the Crafting Interpreters book.

Run the interpreter with cargo run -p interpreter -- examples/class.lox. The bytecode VM is run with cargo run -p bytcode -- examples/class.lox.

Each commit corresponds to one chapter in the book:

Part II: A Tree-Walk Interpreter

Part III: A Bytecode Virtual Machine