bf2s 0.1.0

A simple Brainfuck interpreter that executes code from a string and returns the output as a string.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# bf2s (Brainfuck-to-string)


## Usage

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