An open API service indexing awesome lists of open source software.

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/

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