Continue

Continue a loop with the next iteration. All commands in the loop behind continue will be skipped. The program will jump to the loop condition command.

Example:

print "for-next"
for i=0 to 3
  if i=2 then
    continue  'jump to 'for ..'
  end if
  print str(i)
next
 
print "while-wend"
clr i
while i<3
  incr i
  if i=2 then
    continue  'jump to 'while ..'
  end if
  print str(i)
wend
 
print "do-loop"
clr i
do
  incr i
  if i=2 then
    continue  'jump to 'loop ..'
  end if
  print str(i)
loop until i>2