One can break out of an iteration of a (nested) for loops in fashion offered by Perl but with a different syntax |
outer: // label |
for( int j=0; j<10; j++) { /* Note j only defined in for loop */ |
/* select course j */
|
/* Continue jumps to here to next iteration of loop labelled with outer */ |
} |