Merge lists
The Merge lists operator combines two lists containing elements of the same type into a single new list. The resulting list preserves the order of elements: it begins with the elements from the first list, followed by the elements from the second list. The List indexing starts at 1.
Example 107.
In this example, two lists are merged into a single list:
A is the first list: [‘John Doe’,’Jane Doe’]
B is the second list: [‘Clementine Doe’]
MERGE_LISTS(A,B)
Example 108.
The result is a new list: [‘John Doe’,’Jane Doe’,’Clementine Doe’]