Implementation of a brainfuck parser written in rust using nom
Example:
```rust extern crate brainfuck;
use brainfuck::context::Context; use brainfuck::parser;
fn main() { let helloworld = includebytes!("helloworld.bf"); let mut ctx = Context::new(); let nodes = parser::parse(helloworld).expect("Failed parsing input file"); ctx.run(&nodes); } ```