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

  1. #
  2. # Example 18-7
  3. # A two-level site structure.
  4. #
  5.  
  6. set site(sections) {
  7.     About            /about
  8.     Products            /products
  9.     Support            /support
  10. }
  11. set site(About) {
  12.     Company            company.html
  13.     Contacts            contacts.html
  14.     Directions                directions.html
  15. }
  16.  
  17.  
  18.