[ Team LiB ] Previous Section Next Section

Break and Continue

You can control loop execution with the break and continue commands. The break command causes immediate exit from a loop, while the continue command causes the loop to continue with the next iteration. There is no goto command in Tcl.

    [ Team LiB ] Previous Section Next Section