6 lines
69 B
Rust
6 lines
69 B
Rust
fn main(){
|
|
for i in 0..4 {
|
|
println!("-> {}", i);
|
|
}
|
|
}
|