Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/jacobcrabill/monkey-lang

An implementation of the Monkey programming language in Zig
https://github.com/jacobcrabill/monkey-lang

interpreter monkey-programming-language zig

Last synced: about 1 month ago
JSON representation

An implementation of the Monkey programming language in Zig

Awesome Lists containing this project

README

        

# Monkey Interpreter in Zig

An implementation of the Monkey programming language in Zig
Following Thorsten Ball's ["Writing An Interpreter in Go"](interpreterbook.com)

## Status

The lexer and parser are working to some extent; to run tests, do:
- Lexer: `zig build test-lexer -fsummary`
- Parser: `zig build test-parser -fsummary`

Note: `-fsummary` forces the test summary to be displayed; otherwise silence means success.