home *** CD-ROM | disk | FTP | other *** search
/ The Fred Fish Collection 1.5 / ffcollection-1-5-1992-11.iso / ff_progs / ui_utils / tcl_447.lzh / TCL / TCL.LZH / tcl / tclprocs / help.tcl < prev    next >
Encoding:
Text File  |  1990-05-04  |  224 b   |  14 lines

  1.  
  2. global helppath
  3. set helppath "tcl:help"
  4.  
  5. proc help {args} {
  6.     global helppath
  7.     if {[string compare $args ""] == 0} {
  8.         echo "Help is available for the following:"
  9.         run lc $helppath
  10.     } else {
  11.         run more $helppath/$args
  12.     }
  13. }
  14.