Skip to the next iteration of a walk or while loop.
walk i = 0 through 10 {
if i == 5 {
next; # skips to the next iteration
}