ConcatenateLists
Type
operator
Summary
Concatenate two lists. LeftList:The List to go at the start of the resulting list. RightList:The List to go at the end of the resulting list.
Syntax
<Left> & <Right>
Description
Returns a newly-created list consisting of the elements of LeftList followed by the elements of RightList.
Examples
variable tVar
put ["a", "b"] & ["c", "d"] into tVar
-- tVar contains ["a", "b", "c", "d"]