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

  1.  source fileName
  2.       Read file fileName and pass the contents to the Tcl
  3.       interpreter as a sequence of commands to execute in the
  4.       normal fashion. The return value of source is the
  5.       return value of the last command executed from the
  6.       file.  If an error occurs in executing the contents of
  7.       the file, then the source command will return that
  8.       error.  If a return command is invoked from within the
  9.       file, the remainder of the file will be skipped and the
  10.       source command will return normally with the result
  11.       from the return command.
  12.  
  13.