Loops/Downward for: Difference between revisions

m
no edit summary
(Loops/Downward for in Tiny BASIC)
mNo edit summary
Line 491:
==={{header|FutureBasic}}===
<lang futurebasic>
window 1, @"Countdown", ( 0, 0, 400, 300 )
include "ConsoleWindow"
 
NSInteger i
dim as long i
 
for i = 10 to 0 step -1
print i
next
 
HandleEvents
</lang>
Output:
715

edits