home *** CD-ROM | disk | FTP | other *** search
/ Fish 'n' More 2 / fishmore-publicdomainlibraryvol.ii1991xetec.iso / dirs / tcl_447.lzh / TCL / tcl.lzh / tcl / help / procedures < prev    next >
Text File  |  1990-05-03  |  478b  |  11 lines

  1. PROCEDURES
  2.    Tcl allows you to extend the command interface by defining
  3.    procedures.  A Tcl procedure can be invoked just like any
  4.    other Tcl command (it has a name and it receives one or more
  5.    arguments).  The only difference is that its body isn't a
  6.    piece of C code linked into the program;  it is a string
  7.    containing one or more other Tcl commands.  See the proc
  8.    command for information on how to define procedures and what
  9.    happens when they are invoked.
  10.  
  11.