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