clox/README.md

20 lines
426 B
Markdown
Raw Permalink Normal View History

2024-11-19 04:59:55 +00:00
# Clox
This is my implmementation of the `clox` programming language, as seen from [Crafting Interpreters]. It makes use of the
[meson] build system. For convenience, there's also a `Makefile` included to simplify the (already pretty simple) meson commands.
### Building
```bash
make
```
To run the tests:
```bash
make test
```
[Crafting Interpreters]: https://craftinginterpreters.com/
[meson]: https://mesonbuild.com/