jlox/README.md

19 lines
334 B
Markdown
Raw Normal View History

2024-11-18 14:31:44 +00: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
```bash
./gradlew assemble
```
To run the tests:
```bash
./gradlew test
```
[Crafting Interpreters]: https://craftinginterpreters.com/
[gradle]: https://gradle.org/