Language catalogKeywordsbreakOn this pagebreakMakes a given loop or function (that the 'break' keyword is inside) act as it has completely ended its execution ("breaks" free from the loop/function) Syntax break Example repeat 10 with $iteration if {$iteration is 3} break end Print "iteration {$iteration}"end