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.git
Go to the project directory
cd jlox/lox
Compile it
javac lox/Lox.java -d build
Run the REPL env
cd build
java lox/Lox
To run tests, run the following command
Good luck. They work trust me.