summaryrefslogtreecommitdiff
path: root/lisp.h
diff options
context:
space:
mode:
authorFelix Perktold <Felix.Perktold@student.uibk.ac.at>2025-12-21 23:05:40 +0100
committerFelix Perktold <Felix.Perktold@student.uibk.ac.at>2025-12-21 23:05:40 +0100
commit85e9fef4aa8855b6660ce8c8cc8d6f5fb0d507b6 (patch)
tree4155495cac8198ed00539103009275028320fb4f /lisp.h
parentc3273084cc4b1fa4657a5e52590825fd114841e4 (diff)
more pretty printing
Diffstat (limited to 'lisp.h')
-rw-r--r--lisp.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/lisp.h b/lisp.h
index b7e5a94..2e95fb9 100644
--- a/lisp.h
+++ b/lisp.h
@@ -49,6 +49,7 @@ value *car(value *cons);
value *cdr(value *cons);
void *print_value(value *val);
+void *println_value(value *val);
// environments, TODO: make this use hashtable
// symbol->val
typedef struct env {