Code: Select all
set Flag long 0
set i long 0
set j long 0
for i = 0 < 3
print "i = %i%"
if Flag == 0
math Flag = 1
continue
else
math Flag = 0
endif
print "*** Message before embedded loop ***"
for j = 0 < 4
print "\tj = %j%"
next j
next i
Of course it's easy to bypass it by placing the code withing an If...EndIf.