This project follows along the textbook "Crafting Interpreters" by Robert Nystrom.
The project currently supports basic mathematical operations and boolean comparison.
Clone the project
git clone https://github.com/sikorosenai/jlox.gitGo to the project directory
cd jlox/loxCompile it
javac lox/Lox.java -d buildRun the REPL env
cd build
java lox/LoxTo run tests, run the following command
Good luck. They work trust me.