https://github.com/mattbit/monkey-lang
An interpreter for the Monkey programming language from https://interpreterbook.com/
https://github.com/mattbit/monkey-lang
Last synced: 10 months ago
JSON representation
An interpreter for the Monkey programming language from https://interpreterbook.com/
- Host: GitHub
- URL: https://github.com/mattbit/monkey-lang
- Owner: mattbit
- Created: 2020-05-15T22:32:18.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2021-08-07T22:04:23.000Z (almost 5 years ago)
- Last Synced: 2025-07-25T17:08:24.080Z (11 months ago)
- Language: Go
- Size: 6.84 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# Monkey Language Interpreter
Based on [Writing An Interpreter In Go](https://interpreterbook.com), a basic tree-walking interpreter for the [Monkey programming language](https://interpreterbook.com/#the-monkey-programming-language).
## Implementation
- [x] Lexer
- [ ] Parser
- [ ] Abstract Tree Syntax
- [ ] Internal Object System
- [ ] Evaluator