Brainfuck interpreter written in Rust
cargo run --release <file_name.bf>
cargo run --release examples/helloworld.bf
- Wikipedia - https://en.wikipedia.org/wiki/Brainfuck
- Gist from GitHub User roachhd - https://gist.github.com/roachhd/dce54bec8ba55fb17d3a
- Add more optimizations for looped operations
- Look into assembly generations, libc calls, and implement JIT compiler
- Include more interesting and complicated examples
- Better/Custom error handling