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 / help / set < prev    next >
Encoding:
Text File  |  1990-05-04  |  500 b   |  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.