You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

7 lines
143 B
Rust

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();
}