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