Take any number of input lists, and create a new list containing the items of the input lists. So
APPEND [A B] [C D]
where the [,,,] are lists reports the list
[A B C D]
not [[A B] [C D]].11111Reports a new list containing the items of the input list, but in the opposite order.1inputresultReports a new list whose items are the same as in the input list, except that if two or more equal items appear in the input list, only the last one is kept in the result.1Reports a sorted version of the list in its first input slot, using the comparison function in the second input slot. For a list of numbers, using < as the comparison function will sort from low to high; using > will sort from high to low.1even itemsmerge11#1#2