for i in 1..3 { println!("i: {}", i); } // print 1, 2 // starting from rust 1.26 for i in 1..=3 { println!("i: {}", i); } // print 1, 2, 3