5 lines
94 B
Text
5 lines
94 B
Text
fn main() {
|
|
for i in 1u32..11u32 {
|
|
println!("Door {} is open", i.pow(2));
|
|
}
|
|
}
|