Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/adamfrey/rust-brainf_ck-interpreter
- Owner: AdamFrey
- Created: 2015-05-30T16:22:24.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-05-30T16:47:00.000Z (over 9 years ago)
- Last Synced: 2023-02-26T06:56:49.933Z (over 1 year ago)
- Language: Rust
- Size: 113 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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 DesaulniersTo 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