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

https://github.com/intendednull/bf-rs

Brainf*ck interpreter written in Rust
https://github.com/intendednull/bf-rs

Last synced: about 1 year ago
JSON representation

Brainf*ck interpreter written in Rust

Awesome Lists containing this project

README

          

#+title: Brainfuck Interpreter
#+subtitle: another interpreter written in rust
Another [[https://esolangs.org/wiki/Brainfuck][brainfuck]] interpreter written in rust.
* Usage
Put this in ~hello-world.bf~
#+begin_src brainfuck
++++++++++[>+++++++>++++++++++>+++>+<<<<-]>++.>+.+++++++..+++.>++.<<+++++++++++++++.>.+++.------.--------.>+.>.
#+end_src
Then run it with
#+begin_src sh
$ cargo run hello-world.bf
Hello World!
#+end_src