about summary refs log tree commit diff
path: root/users/tazjin/rlox/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'users/tazjin/rlox/README.md')
-rw-r--r--users/tazjin/rlox/README.md7
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 0000000000..1d2692d09c
--- /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.