summaryrefslogtreecommitdiff
path: root/Compiler.hs
diff options
context:
space:
mode:
Diffstat (limited to 'Compiler.hs')
-rw-r--r--Compiler.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Compiler.hs b/Compiler.hs
index a5a1f3d..913d568 100644
--- a/Compiler.hs
+++ b/Compiler.hs
@@ -83,7 +83,7 @@ newtype CM a = CM {unCM :: StateT CompState (Except String) a}
builtinMap :: Map.Map Name ()
builtinMap = Map.fromList [
("+", ()), ("-", ()), ("<=", ()), ("=", ()), ("print", ()),
- ("list", ()), ("car", ()), ("cdr", ()),
+ ("list", ()), ("car", ()), ("cdr", ()), ("null?", ()),
("sys-open-file", ()), ("sys-close-file", ()), ("sys-get-char", ()), ("sys-put-string", ())]
bbId :: BB -> Int