Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/adamfrey/rust-brainf_ck-interpreter

A brainf*ck interpreter written in Rust
https://github.com/adamfrey/rust-brainf_ck-interpreter

Last synced: 22 days ago
JSON representation

A brainf*ck interpreter written in Rust

Awesome Lists containing this project

README

        

# A Brainf*ck interpreter written in Rust

Inspired by a
[blog post](https://nickdesaulniers.github.io/blog/2015/05/25/interpreter-compiler-jit/)
by Nick Desaulniers

To run:
- `rustc -O bf.rs`
- add a bf program to the directory as `test.b`
- `./bf test.b`

## Todo
- Implement user input prompt
- Have the interpreter get the source file from stdin
- Add some sample bf programs