mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2024-12-23 09:41:36 +00:00
[common-lisp/en] Fix code in examples
This commit is contained in:
parent
adba73ccb9
commit
2f85645c9f
@ -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
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user