home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / lib / tclX-6.4 / help / strings / append < prev    next >
Encoding:
Text File  |  1992-12-17  |  520 b   |  9 lines

  1.           append varName value ?value value ...?
  2.                Append all of the value arguments to the current  value
  3.                of  variable  varName.  If varName doesn't exist, it is
  4.                given a value equal to the  concatenation  of  all  the
  5.                value  arguments.   This  command provides an efficient
  6.                way to build  up  long  variables  incrementally.   For
  7.                example,  ``append  a  $b'' is much more efficient than
  8.                ``set a $a$b'' if $a is long.
  9.