diff options
| author | Lari Kovanen <lari@kovanen.se> | 2015-12-09 13:25:01 +0100 | 
|---|---|---|
| committer | Lari Kovanen <lari@kovanen.se> | 2015-12-09 13:25:01 +0100 | 
| commit | 46d3c28a5fc341f3b8ef061e963adfc7c610263e (patch) | |
| tree | 794df6f192a3875dc09d2710395048c5f405a806 /common-lisp.html.markdown | |
| parent | dbfb19bb5779e84add18a19ebc36833e748e69d9 (diff) | |
| parent | 1f76b2ad8c35b6c7e8ac2cc5dac8f20bc74f09ef (diff) | |
Merge remote-tracking branch 'adambard/master'
Diffstat (limited to 'common-lisp.html.markdown')
| -rw-r--r-- | common-lisp.html.markdown | 14 | 
1 files changed, 11 insertions, 3 deletions
| diff --git a/common-lisp.html.markdown b/common-lisp.html.markdown index f9f64d68..2b1f5de4 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: @@ -613,8 +614,15 @@ nil                  ; for false - and the empty list  ## Further Reading -[Keep moving on to the Practical Common Lisp book.](http://www.gigamonkeys.com/book/) +*   [Keep moving on to the Practical Common Lisp book.](http://www.gigamonkeys.com/book/) +*   [A Gentle Introduction to...](https://www.cs.cmu.edu/~dst/LispBook/book.pdf) + + +## Extra Info +*   [CLiki](http://www.cliki.net/) +*   [common-lisp.net](https://common-lisp.net/) +*   [Awesome Common Lisp](https://github.com/CodyReichert/awesome-cl)  ## Credits. | 
