My implementation of the clox language, from Crafting Interpreters
Find a file
2024-11-18 21:59:55 -07:00
include Add find and delete operations for doubly-linked list 2024-11-18 17:55:01 -07:00
src Add find and delete operations for doubly-linked list 2024-11-18 17:55:01 -07:00
test Add find and delete operations for doubly-linked list 2024-11-18 17:55:01 -07:00
.gitignore Initial commit 2024-11-17 22:16:17 -07:00
Makefile Initial commit 2024-11-17 22:16:17 -07:00
meson.build Initial commit 2024-11-17 22:16:17 -07:00
README.md Add README 2024-11-18 21:59:55 -07: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

make

To run the tests:

make test