#commonlisp Equality(defstruct foo a)(defparameter *a* (make-foo :a 1))(defparameter *b* (make-foo :a 1))(eq *a* *b*) ;; NIL(eql *a* *b*) ;; NIL(equal *a* *b*) ;; NIL(equalp *a* *b*) ;; T