Description
Aborts looping.
Synopsis
break
Example
The following example executes loop five times.
set i 0 while {"true"} { incr i if {$i > 5} { break } }