Add README
This commit is contained in:
parent
0c8b8b251d
commit
86512ca252
1 changed files with 19 additions and 0 deletions
19
README.md
Normal file
19
README.md
Normal 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/
|
Loading…
Reference in a new issue