1 2 3 4 5 6
use int_seq::int_seq; fn main() { let x = int_seq!(-4, -9, 4, 10..26); println!("{:?}", x); }