aboutsummaryrefslogtreecommitdiffstats
path: root/src/parser.c
diff options
context:
space:
mode:
authorBad Diode <bd@badd10de.dev>2021-11-04 11:58:53 +0100
committerBad Diode <bd@badd10de.dev>2021-11-04 11:58:53 +0100
commit7cbef14e8393475b1e569fdbfff2c46db859d43f (patch)
treec7a25a997fae700f5f7a952a9550d6ee74bea240 /src/parser.c
parent84c2bf292ddcb91543715951805ebc2335c46567 (diff)
downloadbdl-7cbef14e8393475b1e569fdbfff2c46db859d43f.tar.gz
bdl-7cbef14e8393475b1e569fdbfff2c46db859d43f.zip
Add `cons`, `car` and `cdr` primitives
Diffstat (limited to 'src/parser.c')
-rw-r--r--src/parser.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/parser.c b/src/parser.c
index 9191aa2..5632e13 100644
--- a/src/parser.c
+++ b/src/parser.c
@@ -11,6 +11,7 @@ static char *builtins [] = {
11 "not", "and", "or", 11 "not", "and", "or",
12 "nil?", "zero?", "fixnum?", "bool?", 12 "nil?", "zero?", "fixnum?", "bool?",
13 "display", 13 "display",
14 "cons", "car", "cdr",
14}; 15};
15 16
16uint64_t 17uint64_t