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

5 lines
52 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
FOR i = 1 TO 21 STEP 2
PRINT i; " ";
NEXT i
END