diff options
Diffstat (limited to 'common-lisp.html.markdown')
| -rw-r--r-- | common-lisp.html.markdown | 5 | 
1 files changed, 3 insertions, 2 deletions
| diff --git a/common-lisp.html.markdown b/common-lisp.html.markdown index f9f64d68..63183c1e 100644 --- a/common-lisp.html.markdown +++ b/common-lisp.html.markdown @@ -175,7 +175,8 @@ nil                  ; for false - and the empty list                :age 5))  *rover* ; => #S(DOG :NAME "rover" :BREED "collie" :AGE 5) -(dog-p *rover*) ; => t  ;; ewww) +(dog-p *rover*) ; => true  #| -p signifies "predicate". It's used to +                              check if *rover* is an instance of dog. |#  (dog-name *rover*) ; => "rover"  ;; Dog-p, make-dog, and dog-name are all created by defstruct! @@ -260,7 +261,7 @@ nil                  ; for false - and the empty list  (defparameter *adjvec* (make-array '(3) :initial-contents '(1 2 3)        :adjustable t :fill-pointer t)) -       +  *adjvec* ; => #(1 2 3)  ;; Adding new element: | 
