Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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

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