tvl-depot/users/tazjin/rlox/README.md
Vincent Ambo 0618ff11cc feat(tazjin/rlox): Bootstrap program
This is going to be the first of two interpreters from "Crafting
Interpreters".

Change-Id: I354ddd2357444648d0245f35d92176dd176525d8
Reviewed-on: https://cl.tvl.fyi/c/depot/+/2142
Reviewed-by: tazjin <mail@tazj.in>
Tested-by: BuildkiteCI
2020-11-23 01:15:57 +00:00

7 lines
321 B
Markdown

This is an interpreter for the Lox language, based on the book "[Crafting
Interpreters](https://craftinginterpreters.com/)".
The book's original code uses Java, but I don't want to use Java, so I've
decided to take on the extra complexity of porting it to Rust.
Note: This implements the first of two Lox interpreters.