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

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

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.