Source of 99bottlesOfBeer.stt

<!-- $Header$ -->

<!-- el cheapo version 
  --   does not care for plural of bottle 
  --   and does not special case of 0 bottles in last line.
  -->

<html>
  <head>
    <title>99 Bottles of Beer</title>
  </head>

  <body bgcolor=white>
    <h2>STT example: 99 Bottles of Beer</h2>
<?stt 
    99 to: 1 by: -1 do: [ :i |
?>
	<?stt = i ?> bottle(s) of beer on the wall,
	<?stt = i ?> bottle(s) of beer.
	<br>
	Take one down, pass it around,
	<?stt = i-1 ?> bottle(s) of beer on the wall.
	<p>
<?stt 
    ]
?>
    <p>
    More of this is found at <a href="http://99-bottles-of-beer.ls-la.net/">http://99-bottles-of-beer</a>
    <p>
    <hr><address>Beer served by your friendly <a href=http://www.exept.de>ST/X WebServer</a></address>
  </body>
</html>

  

Served by your friendly ST/X WebServer