1 2 3 4 5 6 7
mod lib; fn main(){ let line: &str = "foo | foobar | foo "; let test = lib::parse_line(line, "|", "|"); println!("{}", test); }