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

https://github.com/splurf/bf2s

brainfuck to string
https://github.com/splurf/bf2s

brainfuck rust

Last synced: about 1 year ago
JSON representation

brainfuck to string

Awesome Lists containing this project

README

          

# bf2s (Brainfuck-to-string)

## Usage
```rust
fn main() {
let code = "
-[------->+<]>-.-[->+++++<]>
++.+++++++..+++.[->+++++<]>+
.------------.---[->+++<]>.-
[--->+<]>---.+++.------.----
----.-[--->+<]>.
";
let s = bf2s::bf_to_str(code);
assert_eq!(s, "Hello, World!")
}
```