push
macro
(push item place)
Prepends item to the list place and updates the setfable place to the new list.
item
place
setf
make-html > (let a '(1 2 3)) it: a make-html > (push 4 a) it: (4 1 2 3)