aboutsummaryrefslogtreecommitdiff
path: root/src/interp.h
diff options
context:
space:
mode:
authorMistivia <i@mistivia.com>2025-06-19 20:31:18 +0800
committerMistivia <i@mistivia.com>2025-06-19 20:31:18 +0800
commitd14f95e3f093821e5ef9b6b949dc1c269abb513f (patch)
tree1e5dfcf0773ac2cfdffcb53757a2bb65b7897612 /src/interp.h
parent14f4414967db1dd5c67405dbdf9310f4737a7388 (diff)
add list, progn
Diffstat (limited to 'src/interp.h')
-rw-r--r--src/interp.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/interp.h b/src/interp.h
index 3b3004d..96d6b4b 100644
--- a/src/interp.h
+++ b/src/interp.h
@@ -40,6 +40,8 @@ SExp* Interp_ref(Interp *self, SExpRef ref);
void Interp_gc(Interp *self, SExpRef tmp_root);
void Interp_add_primitive(Interp *self, const char *name, LispPrimitive fn);
+SExpRef primitive_list(Interp *interp, SExpRef sexp);
+SExpRef primitive_progn(Interp *interp, SExpRef sexp);
SExpRef primitive_setq(Interp *interp, SExpRef sexp);
SExpRef primitive_let(Interp *interp, SExpRef sexp);
SExpRef primitive_car(Interp *interp, SExpRef sexp);