Push question
Can someone tell me why:
CL-USER 5 > (let ((acc nil)
                   (val 1))
               (push val acc))
(1)
CL-USER 6 > (push 1 nil)
Error: Cannot change NIL -- it is a constant.
Are the Lisp gods crazy?
Laughing Water