How do i access the :Documentation string of a slot of a Defclass in Common lisp
问题 Ok here is How i instantiate my Defclass and related Defmethod and Defparameter (defvar *account-numbers* 0) (defclass bank-account () ((customer-name :initarg :customer-name :initform (error "Must supply a customer name.") :accessor customer-name :documentation "Customer's name") (balance :initarg :balance :initform 0 :reader balance :documentation "Current account balance") (account-number :initform (incf *account-numbers*) :reader account-number :documentation "Account number, unique