Java implementation of the Lox programming language from the book Crafting Interpreters
Tested with Java 19 & Maven 3.9
To compile, run the following from this directory:
mvn packageTo run the REPL:
java -cp target/src-1.0-SNAPSHOT.jar com.lox.LoxTo run a .lox file:
java -cp target/src-1.0-SNAPSHOT.jar com.lox.Lox <path-to-lox-file>