Embedding Tcl in HTML" ?> Rivet scripts look something like this:
<html>
  <body>
    <h1>Rivet Example</h1>
<?
puts "The time is now:"
puts [clock format [clock seconds]]
?>

  </body>
</html>
The challenge is to turn that into something that can be executed as Tcl code. The solution is pretty obvious...