°
Loop ahead with 'continue'
The 'continue' statement has also been borrowed from C and Python. Again, you can specify the number of the loop to continue with.
for i=1 to 3 for j=10 to 15 if j==12 continue 2 Print (i)-(j) 1-10 1-11 2-10 2-11 3-10 3-11