Skip to content

continue ​

Skip the rest of the current loop iteration and continue with the next.

Syntax ​

tcl
continue

Parameters ​

None. The continue command takes no arguments.

Examples ​

Skip even numbers ​

Output

Filter items in foreach ​

Output

Skip invalid data ​

Output

Continue in while loop ​

Output

Continue only affects innermost loop ​

Output

See Also ​