mirror of
https://github.com/krgamestudios/Toy.git
synced 2026-04-15 14:54:07 +10:00
12 lines
159 B
Plaintext
12 lines
159 B
Plaintext
var loops = 0;
|
|
|
|
while (true) {
|
|
if (++loops < 15532) {
|
|
continue;
|
|
}
|
|
|
|
break;
|
|
}
|
|
|
|
assert loops == 15532, "Yuki loop failed (break + continue)";
|