Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/0xnathanw/interpreter

Clox compiler/interpreter.
https://github.com/0xnathanw/interpreter

c clox compiler interpreter

Last synced: about 2 months ago
JSON representation

Clox compiler/interpreter.

Awesome Lists containing this project

README

        

# Interpreter
A "Clox" compiler, described in the book "Crafting Interpreters" by Robert Nystrom.

## Usage
Build with Cmake:
```
~/Interpreter$ mkdir build
~/Interpreter$ cd build
~/Interpreter$ cmake ..
~/Interpreter$ make
```
Run without argument for REPL, otherwise provide a source file as the first argument.