Dart continue

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