Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rkdud007/honyaku
Rust implementation of the Monkey language wip
https://github.com/rkdud007/honyaku
rust
Last synced: 8 days ago
JSON representation
Rust implementation of the Monkey language wip
- Host: GitHub
- URL: https://github.com/rkdud007/honyaku
- Owner: rkdud007
- Created: 2023-08-21T06:52:58.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2023-08-23T07:55:32.000Z (about 1 year ago)
- Last Synced: 2023-08-23T11:24:56.822Z (about 1 year ago)
- Topics: rust
- Language: Rust
- Homepage:
- Size: 11.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# honyaku
Rust implementation of the Monkey language from "Writing an Interpreter in Go" by Thorsten Ball. Learing how interpreter while learning rust 🦀
## References
There are pretty good implemention resources that i'm refering and comparing ✨
- [Nederlang](https://github.com/dannyvankooten/nederlang)
- [cymbal](https://github.com/shuhei/cymbal)
- [Monkey-rust](https://github.com/Rydgel/monkey-rust)
- [interpreter](https://github.com/0xcacti/interpreter)## TODO
- [x] Lexing
- [ ] Paring
- [x] Statement
- [ ] Expression
- [ ] Evaluation
- [ ] Extending