diff options
| author | Mistivia <i@mistivia.com> | 2025-06-19 20:31:18 +0800 |
|---|---|---|
| committer | Mistivia <i@mistivia.com> | 2025-06-19 20:31:18 +0800 |
| commit | d14f95e3f093821e5ef9b6b949dc1c269abb513f (patch) | |
| tree | 1e5dfcf0773ac2cfdffcb53757a2bb65b7897612 /src/interp.h | |
| parent | 14f4414967db1dd5c67405dbdf9310f4737a7388 (diff) | |
add list, progn
Diffstat (limited to 'src/interp.h')
| -rw-r--r-- | src/interp.h | 2 |
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); |
