GALiRe
GScript command (continue)




Function:
Skips the rest of the current loop and starts a new iteration. i.e. -
while ($a > 1) {
if ($a eq 5) {continue;}
else {print($a);}
$a++;}

This does not work outside of GALiRe Script.