libbfi 1.2.1

Extendable brainfuck interpreter library
Documentation
libbfi-1.2.1 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();
}