1 2 3 4 5 6 7 8 9 10
fn main() { let mut i; 'a: for i in 0..10 { println!("{}", i); } 'a: for i in (0..10).step_by(2) { println!("{}", i); } }