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