Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/jacobcrabill/monkey-lang
- Owner: JacobCrabill
- License: mit
- Created: 2023-05-24T14:21:35.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-09-30T02:59:40.000Z (over 1 year ago)
- Last Synced: 2023-09-30T04:54:29.789Z (over 1 year ago)
- Topics: interpreter, monkey-programming-language, zig
- Language: Zig
- Homepage:
- Size: 131 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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.