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

https://github.com/flippingbitss/interpreter-book-in-rust

Following https://interpreterbook.com/ using Rust
https://github.com/flippingbitss/interpreter-book-in-rust

Last synced: over 1 year ago
JSON representation

Following https://interpreterbook.com/ using Rust

Awesome Lists containing this project

README

          

Implementation of [Writing An Interpreter In Go](https://interpreterbook.com/) in Rust

Things to improve
----------
- [ ] Support float literals
- [ ] Support Utf-8 charset
- [ ] Use arena alloc or a single `Vec` for AST storage
- [ ] Make `Lexer` use an `impl Iterator`
- [ ] Attach error messages to result types