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

16 lines
187 B
Text
Raw Permalink Normal View History

2023-09-01 09:35:06 -07:00
Str15 s(11)
long i
2023-07-01 11:58:00 -04:00
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
2023-09-01 09:35:06 -07:00
HandleEvents