Head's Up: JavaScript is either turned off or not working properly in your browser. Some parts of this page may not work properly.
fn main() { for num in (1..=10).step_by(2) { println!("{}", num); } }
1 3 5 7 9