https://github.com/wiseodd/ziglox
Lox compiler written in Zig
https://github.com/wiseodd/ziglox
Last synced: 12 months ago
JSON representation
Lox compiler written in Zig
- Host: GitHub
- URL: https://github.com/wiseodd/ziglox
- Owner: wiseodd
- License: mit
- Created: 2024-08-16T23:06:39.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-01-14T23:18:48.000Z (about 1 year ago)
- Last Synced: 2025-04-04T14:49:10.436Z (12 months ago)
- Language: Zig
- Size: 311 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Lox Interpreter Written in Zig
Lox is the language described in Robert Nystrom's
[Crafting Interpreters](https://craftinginterpreters.com/) book.
This repo contains a Zig implementation of Lox bytecode compiler,
i.e. the second part of the book.
> [!NOTE]
> Check out for my implementation
> of Lox _interpreter_ (as opposed to the compiler here), written in Rust.