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

  1.  eval arg1 arg2 ...      
  2.       Eval takes one or more arguments, which together  
  3.       comprise a Tcl command (or collection of Tcl commands 
  4.       separated by newlines in the usual way).  Eval  
  5.       concatenates all its arguments in the same fashion as 
  6.       the concat command, passes the concatenated string to 
  7.       the Tcl interpreter recursively, and returns the result 
  8.       of that evaluation (or any error generated by it).
  9.  
  10.