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

  1.  set varname [value]
  2.       If value isn't specified, then return the current value
  3.       of varname.  If value is specified, then set the value
  4.       of varname to value, creating a new variable if one
  5.       doesn't already exist.  If no procedure is active, then
  6.       varname refers to a global variable.  If a procedure is
  7.       active, then varname refers to a parameter or local
  8.       variable of the procedure, unless the global command
  9.       has been invoked to declare varname to be global.
  10.  
  11.