parse

Function parse 

Source
pub fn parse<T>(i: T) -> Result<Block, Err<T, u32>>
Examples found in repository?
examples/hello_world.rs (line 7)
4fn main() {
5    let hello_world = parser::CompleteByteSlice(include_bytes!("hello_world.bf"));
6    let mut ctx     = Context::new();
7    let block       = parser::parse(hello_world).expect("Failed parsing input file");
8    ctx.run(&block);
9}