home *** CD-ROM | disk | FTP | other *** search
/ Practical Programming in Tcl & Tk (4th Edition) / TCLBOOK4.BIN / pc / exsource.old / 3_1.tcl < prev    next >
Text File  |  2003-04-15  |  179b  |  12 lines

  1. #
  2. # Example 3-1
  3. # A simple CGI script.
  4. #
  5.  
  6. puts "Content-Type: text/html"
  7. puts ""
  8. puts "<TITLE>The Current Time</TITLE>"
  9. puts "The time is <B>[clock format [clock seconds]]</B>"
  10.  
  11.  
  12.