continue
A continue statement will search for the previous while or for statement
continue the loop execution.
Example
for ( i = 0; i < 10; i++)
b = my_function(i);
if ( b > 100)
continue;
a += b;
endfor