mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2025-08-05 14:27:51 +02:00
Merge pull request #2055 from davydovanton/patch-1
[common-lisp/en] Fix code in examples
This commit is contained in:
@@ -430,7 +430,7 @@ nil ; for false - and the empty list
|
|||||||
(defun walker (n)
|
(defun walker (n)
|
||||||
(if (zerop n)
|
(if (zerop n)
|
||||||
:walked
|
:walked
|
||||||
(walker (1- n))))
|
(walker (- n 1))))
|
||||||
|
|
||||||
(walker 5) ; => :walked
|
(walker 5) ; => :walked
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user