Source of factorials.stt

<!-- $Header: /cvs/stx/stx/goodies/webServer/data/comancheSTT/factorials.stt,v 1.4 2003/09/16 22:55:09 cg Exp $ -->

<html>
<head>
  <title>Factorial Table (STT-Demo)</title>
</head>

<body>
  This is a generated factorial table:
  <p>
  <table BORDER="1">
    <?stt 1 to: 50 do: [ :each | ?>
    <tr>
       <td><?stt = each ?></td>
       <td><?stt = each factorial ?></td>
    </tr>
    <?stt ] ?>
  </table>
  </p>  
  <hr><address>Served by your friendly <a href=http://www.exept.de>ST/X WebServer</a></address>
</body>
</html>

  

Served by your friendly ST/X WebServer