Switch to edit mode.
Name(s): cat concat*enate1: "Copied from Max's Programming Tool (#836):cat by Maxamillian (#833) Sun Jul 16 18:50:48 1995 EDT"
2: "Takes n strings or lists of strings, and returns a single list of all strings, in order. Used to concatenate messages."
3: r = {}
4: for item in (args)
5: if (typeof(item) == $LIST)
6: r = {@r, @item}
7: else
8: r = {@r, item}
9: endif
10: endfor
11: return r
12: "Last modified by Dax (#789) on Tue May 3 13:45:02 2005 MDT."