Loops/For with a specified step: Difference between revisions

m
Applesoft BASIC
(→‎{{header|Lasso}}: adding Lasso demonstration of loop with specified step)
m (Applesoft BASIC)
Line 96:
next i
print "who do we appreciate?"</lang>
==={{header|Applesoft BASIC}}===
<lang ApplesoftBasic>FOR I = 2 TO 8 STEP 2 : PRINT I; ", "; : NEXT I : PRINT "WHO DO WE APPRECIATE?"</lang>
 
=={{header|BBC BASIC}}==
413

edits