Other List Functions
LIST takes any number of arguments and returns them in a list
E.g.,
(list 1 2 3)
(1 2 3)
(list 'a 'b 'c 'd)
(a b c d)
APPEND copies and joins two lists
E.g.,
(append '(a b) '(c d e))
(a b c d e)
Previous slide
Next slide
Back to first slide
View graphic version