RosettaCodeData/Task/Loops-For-with-a-specified-step/Applesoft-BASIC/loops-for-with-a-specified-step.basic

2 lines
80 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
FOR I = 2 TO 8 STEP 2 : PRINT I; ", "; : NEXT I : PRINT "WHO DO WE APPRECIATE?"