Jump to content

Loops/Continue: Difference between revisions

no edit summary
(Loops/Continue en Yabasic)
No edit summary
Line 252:
40 PRINT ", ";
50 NEXT</lang>
 
==={{header|BASIC256}}===
<lang BASIC256>for i = 1 to 10
print string(i);
if i mod 5 = 0 then
print
continue for
end if
print ", ";
next
print
end</lang>
 
==={{header|BBC BASIC}}===
2,161

edits

Cookies help us deliver our services. By using our services, you agree to our use of cookies.