My implementation of the jlox language, from Crafting Interpreters
Find a file
2024-11-18 07:31:44 -07:00
gradle/wrapper Initial commit 2024-11-18 07:31:44 -07:00
src Initial commit 2024-11-18 07:31:44 -07:00
.gitignore Initial commit 2024-11-18 07:31:44 -07:00
build.gradle Initial commit 2024-11-18 07:31:44 -07:00
gradlew Initial commit 2024-11-18 07:31:44 -07:00
gradlew.bat Initial commit 2024-11-18 07:31:44 -07:00
README.md Initial commit 2024-11-18 07:31:44 -07:00
settings.gradle Initial commit 2024-11-18 07:31:44 -07:00

jlox

This is my implmementation of the jlox programming language, as seen from Crafting Interpreters. It makes use of the gradle build system.

Building

./gradlew assemble

To run the tests:

./gradlew test