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

6 lines
82 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
FOR n = 2 TO 8 STEP 2
PRINT n & "..";
NEXT n
PRINT "who do we appreciate?"
END