6 lines
80 B
Rust
6 lines
80 B
Rust
|
fn main() {
|
||
|
for i in 0..6 {
|
||
|
println!("Hello world, {}", i);
|
||
|
}
|
||
|
}
|