home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 488.lha / TCL_alpha2 / 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.