https://github.com/doccaico/monkey-zig
Monkey programming language written in Zig/Ziglang
https://github.com/doccaico/monkey-zig
zig
Last synced: 8 months ago
JSON representation
Monkey programming language written in Zig/Ziglang
- Host: GitHub
- URL: https://github.com/doccaico/monkey-zig
- Owner: doccaico
- Created: 2024-03-16T07:41:09.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-04-01T11:49:06.000Z (about 2 years ago)
- Last Synced: 2025-01-06T11:38:37.815Z (over 1 year ago)
- Topics: zig
- Language: Zig
- Homepage:
- Size: 123 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Monkey (Tested on Windows only)
A Zig/Ziglang version [monkey](https://monkeylang.org/) language interpreter. From [Write An Interpreter In Go](https://interpreterbook.com/).
## Zig version
```
// 2024/04/01
0.12.0-dev.3496+a2df84d0f
```
## Usage
```
$ zig run src\main.zig
```
## TODOs
* [x] Add buildin functions (len, first, last, rest, push, puts).
* [x] Add string support.
* [x] Add array support.
* [x] Add hash support.