aboutsummaryrefslogtreecommitdiffstats
path: root/examples/lisp/prelude.scm
diff options
context:
space:
mode:
authorGravatar Peter McGoron 2024-07-16 19:54:50 -0400
committerGravatar Peter McGoron 2024-07-16 19:54:50 -0400
commit2e3d3a23cd5615854ea138776b3a1f0382e7105a (patch)
tree33526968749a7ea2b517db1ca0c28863a9d630af /examples/lisp/prelude.scm
parentuns_lisp: cps-lambda (diff)
uns_lisp: quasiquote parserHEADmaster
Diffstat (limited to 'examples/lisp/prelude.scm')
-rw-r--r--examples/lisp/prelude.scm2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/lisp/prelude.scm b/examples/lisp/prelude.scm
index b181e34..c2a606a 100644
--- a/examples/lisp/prelude.scm
+++ b/examples/lisp/prelude.scm
@@ -74,7 +74,7 @@
(__define-macro cond body
(let ((cases (car body)))
(if (null? body)
- <undefined>
+ (null)
(let* ((branch (car cases))
(rest (cdr cases))
(test (car branch))