continue
En continue sats kommera att söka efter närmast föregående while eller
for sats och forsätta att utföra loopen.
Exempel
for ( i = 0; i < 10; i++)
b = my_function(i);
if ( b > 100)
continue;
a += b;
endfor