1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-08-06 14:56:54 +02:00

Foolishness borne of haste

This commit is contained in:
pdn
2013-08-11 10:40:51 -07:00
parent f39aa6adfb
commit fa910a4bc9

View File

@@ -410,7 +410,7 @@ nil ; for false - and the empty list
;; Of course recursion is supported:
(defun walker (n)
(if (zerop 0)
(if (zerop n)
:walked
(walker (1- n))))