break
Makes 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
# the execution will "break" free after the third iteration
repeat 10 with $iteration
if {$iteration is 3}
break
end
Print "iteration {$iteration}"
end