Dart weiter
for (int i=0; i<5; i++) {
if (i == 3) continue;
print(i);
}
// 0, 1, 2, 4
just-saved-you-a-stackoverflow-visit
for (int i=0; i<5; i++) {
if (i == 3) continue;
print(i);
}
// 0, 1, 2, 4