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

  1.  concat arg arg ...
  2.       This command treats each argument as a list and
  3.       concatenates them into a single list.  It permits any
  4.       number of arguments.  For example, the command
  5.  
  6.       concat a b {c d e} {f {g h}}
  7.  
  8.       will return
  9.  
  10.       a b c d e f {g h}
  11.  
  12.       as its result.
  13.  
  14.