- make-list n #!optional fillprocedure
Returns an N-element list, whose elements are all the value FILL. If the FILL argument is not given, the elements of the list may be arbitrary values.
(make-list 4 'c) => (c c c c)
Returns an N-element list, whose elements are all the value FILL. If the FILL argument is not given, the elements of the list may be arbitrary values.
(make-list 4 'c) => (c c c c)