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: 3 months 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 (about 2 years ago)
- Default Branch: main
- Last Pushed: 2023-09-30T02:59:40.000Z (almost 2 years ago)
- Last Synced: 2025-02-09T09:09:58.118Z (5 months ago)
- Topics: interpreter, monkey-programming-language, zig
- Language: Zig
- Homepage:
- Size: 131 KB
- Stars: 4
- Watchers: 2
- 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.