summaryrefslogtreecommitdiff
path: root/src/include/ast.h
diff options
context:
space:
mode:
authorPreston Pan <preston@nullring.xyz>2023-01-05 12:11:33 -0800
committerPreston Pan <preston@nullring.xyz>2023-01-05 12:11:33 -0800
commit346507f767d71c69e55b9f663449eb39e1bc7e54 (patch)
tree5b05f645d4dab681a64efb5ce8801c6442cdd624 /src/include/ast.h
parentc090ab2336d4f2f8536ca47a17f3e689299ea45e (diff)
lists evaluate for non built-in functions
Diffstat (limited to 'src/include/ast.h')
-rw-r--r--src/include/ast.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/include/ast.h b/src/include/ast.h
index a5095e1..c99564d 100644
--- a/src/include/ast.h
+++ b/src/include/ast.h
@@ -50,4 +50,6 @@ ast_t *init_ast_symbol(char *value);
ast_t *init_ast_function(ast_t *car, ast_t *cdr);
ast_t *init_ast_root(ast_t **subnodes, int size);
+
+void ast_type_print(ast_t *e);
#endif