Join two or more lists into one list using Concat() or the || operator. The original lists are not changed.
Concat( a, b );
The following example joins the same lists using the || operator:
Concat( d, e, f);
Join two or more lists and replace the first list with the combined list using Concat to() or the ||= operator.
Concat to(d,e);
Show( d );
The following example joins the same lists using the ||= operator:
Show( d );