Stop a walk or while loop.
walk i = 0 through 10 {
if i == 5 {
break; # stops the loop entirely and exits
}