Loops/Downward for: Difference between revisions

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


==={{header|GW-BASIC}}===
==={{header|GW-BASIC}}===
{{works with|BASICA}}
{{works with|PC-BASIC|any}}
{{works with|PC-BASIC|any}}
<syntaxhighlight lang="qbasic">
<syntaxhighlight lang="gwbasic">
10 FOR I% = 10 TO 0 STEP -1
10 FOR I% = 10 TO 0 STEP -1
20 PRINT I%
20 PRINT I%