jlaenge / LoxInterpreter

Java implementation of the Lox Language, following the implementation guide on https://craftinginterpreters.com/the-lox-language.html
0 stars 0 forks source link

Implement jLox interpreter, along the https://craftinginterpreters.com/contents.html #1

Closed jlaenge closed 7 months ago

jlaenge commented 7 months ago

Implement a Lox Interpreter in Java (jLox), along the description of Crafting Interpreters (A Tree-Walk Interpreter).

jlaenge commented 7 months ago

To clarify. The first implementation does not contain any of the "challenges" posed in the book, or own optimizations. This is in order to keep the jLox implementation consistent with the cLox implementation that will follow.

jlaenge commented 7 months ago

Done.