diff options
| author | David Hsieh <davidhsiehlo@gmail.com> | 2016-03-11 08:39:55 -0600 | 
|---|---|---|
| committer | David Hsieh <davidhsiehlo@gmail.com> | 2016-03-11 08:39:55 -0600 | 
| commit | ceb99e14019672309ca80350054b7bb1a6642a48 (patch) | |
| tree | 1cca5af13a146c0a36ef760b6264d18875290ec0 /common-lisp.html.markdown | |
| parent | 51c2f7ce28caf1cc654bcafc4063f3012cc2f0c3 (diff) | |
| parent | 8d1e2e31ef9c62e2833ccb83cde78caef668f044 (diff) | |
Merge branch 'adambard-master' into r-spanish
Diffstat (limited to 'common-lisp.html.markdown')
| -rw-r--r-- | common-lisp.html.markdown | 13 | 
1 files changed, 10 insertions, 3 deletions
| diff --git a/common-lisp.html.markdown b/common-lisp.html.markdown index 63183c1e..9a23bc26 100644 --- a/common-lisp.html.markdown +++ b/common-lisp.html.markdown @@ -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,9 +614,16 @@ 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.  Lots of thanks to the Scheme people for rolling up a great starting | 
