19 lines
334 B
Markdown
19 lines
334 B
Markdown
|
# 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/
|