libbfi 2.0.0

Extendable brainfuck interpreter library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# LibBFI

A library for interpreting and parsing Brainfuck code. Includes support for the Ook! dialect and possibly more TODO!

```rust
use libbfi::interpreter::std_bf::*;

fn main() {
    let program: &str = ">++++++++[<+++++++++>-]<.>++++[<+++++++>-]<+.+++++++..+++.>>++++++[<+++++++>-]<++.------------.>++++++[<+++++++++>-]<+.<.+++.------.--------.>>>++++[<++++++++>-]<+.";

    StandardBrainfuck::new(&program)
        .filter_characters()
        .expect("Failed parsing characters")
        .run_full_stack();
}
```