Loops/For with a specified step: Difference between revisions

m
m (→‎{{header|FutureBasic}}: Remove unsupported 'ConsoleWindow')
Line 1,196:
# Prints even numbers from 0 to 100
for i = 0 step 2 to 100
print i
.
# Decimal step value
for i = 0 step 1.23 to 100
print i
.
2,063

edits