Discuss this page on this pages TalkPage
Syntax | (lnkAppend list item) → list |
---|---|
Arguments | list: the list you want to append the expression to, as the last element. |
item: The expression you want to append as the last element of the list. | |
Returns | list; A list consisting of the first argument with the last argument appended to it. |
Category | list |
Description | Makes a new list made up of elements of the list then the expression and returns it. |
(lnkAppend '(a b c) 2)
Returns the list (a b c 2) Return to Functions list