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

5 lines
46 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
FOR i = 1 TO 5 STEP .5
PRINT i
NEXT i
END