99 Bottles of Beer/Basic: Difference between revisions

Content added Content deleted
No edit summary
Line 598: Line 598:
TextWindow.WriteLine("")
TextWindow.WriteLine("")
EndFor
EndFor
</lang>

==={{header|MSX Basic}}===

<lang MSXBasic>
10 FOR x = 99 TO 1 STEP -1
20 PRINT x; "bottles of beer on the wall"
30 PRINT x; "bottles of beer"
40 PRINT "Take one down, pass it around"
50 PRINT x-1; "bottles of beer on the wall"
60 PRINT
70 NEXT x
</lang>
</lang>