append
Append a new item to an existing list, creating a new list.
$new = append $myList 6
The above would set $new
to [1 2 3 4 5 6]
. $myList
would remain unaltered.
append
panics if there is a problem while mustAppend
returns an error to the
template engine if there is a problem.