Name: None 2012-03-17 15:12
As I know most of you love Lisp I have a question for you:
What is the difference between
and
?
What is the difference between
(setf mylist '(1 2 3))
(setf another mylist)and
(setf mylist '(1 2 3))
(setf another (copy-list mylist))?