RosettaCodeData/Task/Loops-For-with-a-specified-step/FutureBasic/loops-for-with-a-specified-step.basic
2023-09-01 09:35:06 -07:00

15 lines
187 B
Text

Str15 s(11)
long i
s(0) = "Somewhere"
s(2) = " over"
s(4) = " the"
s(6) = " rainbow" + chr$(13)
s(8) = "Bluebirds"
s(10) = " fly."
for i = 0 to 10 step 2
print s(i);
next
HandleEvents