rusts/loop.rs
2026-09-09 14:04:38 +02:00

6 lines
69 B
Rust

fn main(){
for i in 0..4 {
println!("-> {}", i);
}
}