The "Continue" Statement

The continue statement is a one-word statement that allows the current loop to continue. However, it can only be used with a few loops (for,while,repeat). The continue statement looks like this:
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)
{
if (myVariable == false)
exit;
else
continue;
}
This is one case where the continue statement can come in useful.