Add README

This commit is contained in:
William Brawner 2024-11-18 21:59:55 -07:00
parent 0c8b8b251d
commit 86512ca252
Signed by: wbrawner
GPG key ID: 8FF12381C6C90D35

19
README.md Normal file
View file

@ -0,0 +1,19 @@
# 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/