diff options
Diffstat (limited to 'common-lisp.html.markdown')
| -rw-r--r-- | common-lisp.html.markdown | 15 | 
1 files changed, 11 insertions, 4 deletions
| diff --git a/common-lisp.html.markdown b/common-lisp.html.markdown index e0597e94..9a23bc26 100644 --- a/common-lisp.html.markdown +++ b/common-lisp.html.markdown @@ -261,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: @@ -339,7 +339,7 @@ nil                  ; for false - and the empty list  ;; The () in the above is the list of arguments for the function  (defun hello (name) -   (format nil "Hello, ~a " name)) +   (format nil "Hello, ~a" name))  (hello "Steve") ; => "Hello, Steve" @@ -430,7 +430,7 @@ nil                  ; for false - and the empty list  (defun walker (n)    (if (zerop n)        :walked -      (walker (1- n)))) +      (walker (- n 1))))  (walker 5) ; => :walked @@ -614,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. | 
