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
- Host: GitHub
- URL: https://github.com/flippingbitss/interpreter-book-in-rust
- Owner: flippingbitss
- Created: 2023-12-28T06:54:30.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-01-13T04:04:52.000Z (over 2 years ago)
- Last Synced: 2025-01-24T18:28:18.238Z (over 1 year ago)
- Language: Rust
- Size: 36.1 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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