https://github.com/doccaico/monkey-odin
Monkey programming language written in Odin/Odinlang
https://github.com/doccaico/monkey-odin
odin
Last synced: 4 months ago
JSON representation
Monkey programming language written in Odin/Odinlang
- Host: GitHub
- URL: https://github.com/doccaico/monkey-odin
- Owner: doccaico
- Created: 2024-03-16T12:52:42.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-03-24T04:39:02.000Z (about 2 years ago)
- Last Synced: 2025-09-03T02:34:58.929Z (10 months ago)
- Topics: odin
- Language: Odin
- Homepage:
- Size: 68.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Monkey
A Odin/Odinlang version [monkey](https://monkeylang.org/) language interpreter. From [Write An Interpreter In Go](https://interpreterbook.com/).
## Usage (on Windows)
```
$ make.cmd debug-run
or
$ make.cmd release-run
```
## TODOs
* [x] Add buildin functions (len, first, last, rest, push, puts).
* [x] Add string support.
* [x] Add array support.
* [x] Add hash support.