機能説明
ループ処理を中止します。
記述形式
break
オプション
なし
復帰値
使用例
5回ループする。
set i 0 while {"true"} { incr i if {$i > 5} { break } }
実行結果/出力形式