The continue statement


continue allows a new iteration of a loop without the current iteration completing. For example you could filter records from a file with the 'continue' statement.

continue example.

continue is related to the break statement.


Top Master Index Keywords Functions


Martin Leslie