Continue Repeat

Skip the remainder of a Repeat loop, and continue with the next iteration of the loop.

Syntax:  Continue Repeat
 

Example:

Dim a,i as ubyte

a=0: i=0

Repeat 10
  i=i+1
  If i>5 Then Continue Repeat
  a=a+1
End Repeat

' At this point, a=5

Also See: Repeat, Exit Repeat