diff options
| author | Felix Perktold <Felix.Perktold@student.uibk.ac.at> | 2026-01-18 17:44:10 +0100 |
|---|---|---|
| committer | Felix Perktold <Felix.Perktold@student.uibk.ac.at> | 2026-01-18 17:44:10 +0100 |
| commit | 07cd615c7e1cafccd6d46b3eb68d413f2a2dd9a5 (patch) | |
| tree | 540292fc4029265628ea7e4d2d750c21c267a85b /lisp.h | |
| parent | a2ab90cfb9e364a3de7157b2ea2905e4c944583d (diff) | |
start writing psql module, start writing exercise 1 with that module, small header file changes as needed for module programming
Diffstat (limited to 'lisp.h')
| -rw-r--r-- | lisp.h | 3 |
1 files changed, 0 insertions, 3 deletions
@@ -4,8 +4,6 @@ typedef struct value value; typedef struct env env; -void print_value(value *val); -void println_value(value *val); // environments, TODO: make this use hashtable // symbol->val typedef struct env { @@ -21,7 +19,6 @@ value *env_lookup(env *e, const char *sym); extern env *global_env; -value *eval(env *e, value *val); value *eval_pair(env *e, value *val); value *apply(value *lambda, value *args); |
