use parser::parse;
fn main() {
let line = "thing 1.23 3.45 5.67";
let f = parse!(thing f32 f32 f32);
let (_x, _y, _z) = f(line).unwrap();
}