'** 99 Bottles of Beer in Run BASIC '** A Web development tool for Windows, Mac OS X, and Linux. '** This example dynamically generates a Web page of lyrics. ' Define some constants. q$ = Chr$(34) BeerOnTheWall$ = " of beer on the wall" Beer$ = " of beer!" ' Close the "monospaced" div. Html ""; ' Let the lyrics scroll. Html "
"; ' Generate the lyrics... For bottle = 99 To 1 Step -1 ' start paragraph Html "

"; ' line 1 Print Bottles$(bottle) ; BeerOnTheWall$ ; ". " ; Print Bottles$(bottle) ; Beer