Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/0xnathanw/interpreter
- Owner: 0xNathanW
- Created: 2024-09-12T22:03:06.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2024-09-12T23:34:08.000Z (3 months ago)
- Last Synced: 2024-10-11T01:11:13.587Z (2 months ago)
- Topics: c, clox, compiler, interpreter
- Language: C
- Homepage:
- Size: 1.36 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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.