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