home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 164.lha / ARexx / Example_ARexx / append.rexx < prev    next >
Encoding:
OS/2 REXX Batch file  |  1988-04-28  |  118 b   |  5 lines

  1. /* append -- handles a special case of join. Syntax: 'append a b c' */
  2. parse arg x
  3. x = x || ' as ' ||word(x,1)
  4. join x
  5.