Continue While

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

Syntax:  Continue While
 

Example:

Dim a,i as ubyte

a=0: i=0
While i<=10
  i=i+1
  If i>5 then Continue While
  a=a+1
End While

' At this point, a=5

Also See: While