diff options
author | Preston Pan <preston@nullring.xyz> | 2023-01-03 09:45:40 -0800 |
---|---|---|
committer | Preston Pan <preston@nullring.xyz> | 2023-01-03 09:45:40 -0800 |
commit | b2c539fadfa7ea3eea2e5f7c0c37b5f5f1370c5a (patch) | |
tree | 0f4b9db8c6bf345c9011667c9fbb61393d93a347 /src/include/print.h | |
parent | 9f342255a2260480701cc2ac2d0c623d4aba1348 (diff) |
actually evaluates and prints something now!
Diffstat (limited to 'src/include/print.h')
-rw-r--r-- | src/include/print.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/include/print.h b/src/include/print.h index 9dbecbd..866f63e 100644 --- a/src/include/print.h +++ b/src/include/print.h @@ -12,5 +12,11 @@ void print_float(ast_t *f); void print_func(ast_t *f); +void print_list(ast_t *f); + +void print_symbol(ast_t *s); + +void print_pair(ast_t *p); + void print(ast_t *res); #endif |