blob: 0ab6e112238ca9bcfefa256d5ae3ae0f14a393a1 [file]
## examples/for_continue.av
for i in range(0, 10) {
if i % 2 == 0 {
continue;
}
println(i);
}