aboutsummaryrefslogtreecommitdiffstats
path: root/prelude.scm
diff options
context:
space:
mode:
Diffstat (limited to 'prelude.scm')
-rw-r--r--prelude.scm3
1 files changed, 3 insertions, 0 deletions
diff --git a/prelude.scm b/prelude.scm
index a7469b5..9721c33 100644
--- a/prelude.scm
+++ b/prelude.scm
@@ -27,5 +27,8 @@
(cond ((null? l) ())
(else (cons (f (car l)) (map f (cdr l)))))))
+(define true #t)
+(define false #f)
+
(define for-each map)
;(define compose (lambda (f g) (lambda args (f (apply g args)))))