Loops/Downward for: Difference between revisions

Content added Content deleted
No edit summary
(Loops/Downward for in Run BASIC)
Line 571: Line 571:


==={{header|Liberty BASIC}}===
==={{header|Liberty BASIC}}===
{{works with|Just BASIC}}
{{works with|Run BASIC}}
<lang lb>
<lang lb>
for i = 10 to 0 step -1
for i = 10 to 0 step -1
Line 603: Line 605:
print i
print i
next i</lang>
next i</lang>

==={{header|Run BASIC}}===
{{works with|Just BASIC}}
{{works with|Liberty BASIC}}
<lang lb>for i = 10 to 0 step -1
print i
next i
end</lang>


==={{header|TI-83 BASIC}}===
==={{header|TI-83 BASIC}}===