continue
The continue statement is used to skip the rest of the current iteration of a loop.
It can be used with repeat, while, and for loops, as well as on and with blocks.
let x = 0
while x < 5 {
x += 1
if x == 3 {
continue
}
Transmission { %(x) }
}
// Outputs 1, 2, 4, 5