Lox Interpreter in Zig
Go to file
Drew Galbraith 1b166f04f8 Add a primitive runtime interpreter. 2023-08-29 18:14:28 -07:00
src Add a primitive runtime interpreter. 2023-08-29 18:14:28 -07:00
.gitignore Lexing portion is complete. 2023-08-28 21:03:29 -07:00
README.md Lexing portion is complete. 2023-08-28 21:03:29 -07:00
build.zig Lexing portion is complete. 2023-08-28 21:03:29 -07:00
test.lox First pass of parser complete. 2023-08-29 15:17:49 -07:00

README.md

ZLoxI

ZLoxI is a Tree-Walk Lox Interpreter written in Zig.

Current state involves lexing the language only.

See the book Crafting Interpreters for more information.