RosettaCodeData/Task/Loops-Continue/BASIC256/loops-continue.basic

11 lines
114 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
for i = 1 to 10
print string(i);
if i mod 5 = 0 then
print
continue for
end if
print ", ";
next
print
end