RosettaCodeData/Task/Loops-Downward-for/FutureBasic/loops-downward-for.futurebasic

8 lines
77 B
Text
Raw Permalink Normal View History

2016-12-05 23:44:36 +01:00
include "ConsoleWindow"
dim as long i
for i = 10 to 0 step -1
print i
next