RosettaCodeData/Task/Loops-For-with-a-specified-step/Applesoft-BASIC/loops-for-with-a-specified-step.basic
2023-07-01 13:44:08 -04:00

1 line
80 B
Text

FOR I = 2 TO 8 STEP 2 : PRINT I; ", "; : NEXT I : PRINT "WHO DO WE APPRECIATE?"