diff options
author | Vincent Ambo <mail@tazj.in> | 2020-11-22T23·47+0100 |
---|---|---|
committer | tazjin <mail@tazj.in> | 2020-11-23T01·15+0000 |
commit | 0618ff11ccf50fd6e8a6e0bd7820f19b100ca44a (patch) | |
tree | a0dea473f205242b043962bf7b3481439aff59f2 /users/tazjin/rlox/README.md | |
parent | 312d76acba238d448112e3223fda1e9c5560be6c (diff) |
feat(tazjin/rlox): Bootstrap program r/1912
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
Diffstat (limited to 'users/tazjin/rlox/README.md')
-rw-r--r-- | users/tazjin/rlox/README.md | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/users/tazjin/rlox/README.md b/users/tazjin/rlox/README.md new file mode 100644 index 000000000000..1d2692d09cc1 --- /dev/null +++ b/users/tazjin/rlox/README.md @@ -0,0 +1,7 @@ +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. |