Loops/Downward for: Difference between revisions

Content added Content deleted
m (→‎{{Header|Tiny BASIC}}: Works with (Tom Pittman's) TinyBasic.)
Line 642: Line 642:


==={{Header|Tiny BASIC}}===
==={{Header|Tiny BASIC}}===
{{works with|TinyBasic}}
<syntaxhighlight lang="tiny basic"> LET i = 10
<syntaxhighlight lang="basic">10 REM Loops/Downward for
10 IF i = -1 THEN END
20 LET I = 10
PRINT i
LET i = i - 1
30 IF I = -1 THEN END
40 PRINT I
GOTO 10
50 LET I = I - 1
END</syntaxhighlight>
60 GOTO 30
70 END</syntaxhighlight>


==={{header|Yabasic}}===
==={{header|Yabasic}}===