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

https://github.com/eld/rusty-monkey

Implementation of the Monkey programming language from https://interpreterbook.com in Rust!
https://github.com/eld/rusty-monkey

Last synced: 9 months ago
JSON representation

Implementation of the Monkey programming language from https://interpreterbook.com in Rust!

Awesome Lists containing this project

README

          

# Rusty Monkey

A Monkey implementation in Rust using parser combinators for the lexer and parser
from the book _Writing an Interpreter in Go_.

## Todo
- [ ] Better parser error handling
- [ ] Evaluator optimizations (if any)
- [ ] Implement the compiler elements from _Writing a Compiler in Go_