continue;It is virtually worthless, however, since the loop can continue on by itself. There is one situation that it can come in useful, though:
repeat(10)This is one case where the continue statement can come in useful.
{
if (myVariable == false)
exit;
else
continue;
}