add — Create a new list with a new element
list add (
)
LIST
VAR
The new list
Creates a new list that is identical to the list LIST but has the value VAR appended as additional element.
add ([1, 4], 8) -> [1, 4, 8]