diff options
| author | Felix Perktold <Felix.Perktold@student.uibk.ac.at> | 2025-12-23 13:12:30 +0100 |
|---|---|---|
| committer | Felix Perktold <Felix.Perktold@student.uibk.ac.at> | 2025-12-23 13:12:30 +0100 |
| commit | fddfed044719c2e8d9664a007b214dacc8a0aa36 (patch) | |
| tree | 3a5d6966fb0dacae3dc8b19022ef4527b77ff439 /lisp.h | |
| parent | 3a9a1921fe7a56cefe6650529a2572e9a8debc98 (diff) | |
fix redefinition of symbols in env, cleanup
Diffstat (limited to 'lisp.h')
| -rw-r--r-- | lisp.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -49,8 +49,8 @@ value *car(value *cons); value *cdr(value *cons); value *reverse(value *list); -void *print_value(value *val); -void *println_value(value *val); +void print_value(value *val); +void println_value(value *val); // environments, TODO: make this use hashtable // symbol->val typedef struct env { |
