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!
- Host: GitHub
- URL: https://github.com/eld/rusty-monkey
- Owner: ELD
- Created: 2020-04-01T02:12:27.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2020-07-10T21:47:28.000Z (almost 6 years ago)
- Last Synced: 2025-03-15T18:38:59.809Z (over 1 year ago)
- Language: Rust
- Size: 66.4 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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_