https://github.com/nathanleiby/zlox
zlox implements the Lox programming language in Zig
https://github.com/nathanleiby/zlox
crafting-interpreters lox zig
Last synced: 10 months ago
JSON representation
zlox implements the Lox programming language in Zig
- Host: GitHub
- URL: https://github.com/nathanleiby/zlox
- Owner: nathanleiby
- Created: 2021-11-02T04:44:04.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2022-04-05T18:44:13.000Z (about 4 years ago)
- Last Synced: 2024-04-24T05:30:28.593Z (about 2 years ago)
- Topics: crafting-interpreters, lox, zig
- Language: Zig
- Homepage:
- Size: 319 KB
- Stars: 5
- Watchers: 3
- Forks: 3
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
zlox
====
`zlox` implements the Lox programming language in Zig.
The repo implements the "Bytecode Virtual Machine" for Lox from the Crafting Interpreters book.
It follows the 2nd part of the book.
I have previously implemented the first part of the book ("Tree-walk Interpreter") in Julia, here:
https://github.com/nathanleiby/jlox