continue CommandThe continue command skips the rest of the current iteration in a repeat loop and jumps to the top of the next iteration.
repeat 3 times
append "works " to #message -- this command will execute
continue
append "skipped " to #message -- this command will be skipped
end
continue