mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2024-12-23 17:41:41 +00:00
Foolishness borne of haste
This commit is contained in:
parent
f39aa6adfb
commit
fa910a4bc9
@ -410,7 +410,7 @@ nil ; for false - and the empty list
|
|||||||
;; Of course recursion is supported:
|
;; Of course recursion is supported:
|
||||||
|
|
||||||
(defun walker (n)
|
(defun walker (n)
|
||||||
(if (zerop 0)
|
(if (zerop n)
|
||||||
:walked
|
:walked
|
||||||
(walker (1- n))))
|
(walker (1- n))))
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user