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
- Host: GitHub
- URL: https://github.com/intendednull/bf-rs
- Owner: intendednull
- Created: 2019-11-14T03:02:50.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-11-14T20:34:25.000Z (over 6 years ago)
- Last Synced: 2025-02-11T22:02:54.921Z (over 1 year ago)
- Language: Rust
- Homepage:
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.org
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