mirror of
https://github.com/KaiserY/trpl-zh-cn
synced 2025-05-01 02:38:35 +08:00
22 lines
445 B
Rust
Executable File
22 lines
445 B
Rust
Executable File
fn main() {
|
|
let mut count = 0;
|
|
'counting_up: loop {
|
|
println!("count = {count}");
|
|
let mut remaining = 10;
|
|
|
|
loop {
|
|
println!("remaining = {remaining}");
|
|
if remaining == 9 {
|
|
break;
|
|
}
|
|
if count == 2 {
|
|
break 'counting_up;
|
|
}
|
|
remaining -= 1;
|
|
}
|
|
|
|
count += 1;
|
|
}
|
|
println!("End count = {count}");
|
|
}
|