libbfi 2.0.0

Extendable brainfuck interpreter library
Documentation
libbfi-2.0.0 has been yanked.

LibBFI

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

use libbfi::interpreter::std_bf::*;

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

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