continue

Examples


The continue statement allows you to continue the current instance of the specified type of loop.

Syntax

continue [for | repeat | while]

Parameters

for | repeat | while – A keyword indicating the type of loop to be continued.

Comments

This statement is useful for managing navigation within nested loops.


Documentation Feedback