mirror of
https://github.com/krgamestudios/Toy.git
synced 2026-04-15 06:44:07 +10:00
20 lines
309 B
Plaintext
20 lines
309 B
Plaintext
while (a) { //stored in an array
|
|
while (b) { //stored in an array
|
|
while(c) { //stored in an array
|
|
|
|
//just peek at the array's top
|
|
continue;
|
|
|
|
//these are stored in a second array
|
|
break;
|
|
break;
|
|
break;
|
|
} //breaks are updated here
|
|
|
|
//but what about these?
|
|
break;
|
|
break;
|
|
break;
|
|
}
|
|
}
|