diff options
author | Preston Pan <preston@nullring.xyz> | 2023-01-08 10:00:08 -0800 |
---|---|---|
committer | Preston Pan <preston@nullring.xyz> | 2023-01-08 10:00:08 -0800 |
commit | aa1dd020edb82f26dd5bc29378177cfcaa4c53ed (patch) | |
tree | 4785b6311ac14be5939d33ebb5b0d8988c8f56bd /src/visitor.c | |
parent | 8edafecb633fec2b6327d996c1e7c282f4f1792f (diff) |
print functions completed
Diffstat (limited to 'src/visitor.c')
-rw-r--r-- | src/visitor.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/visitor.c b/src/visitor.c index 374ad02..6fd487a 100644 --- a/src/visitor.c +++ b/src/visitor.c @@ -447,6 +447,7 @@ ast_t *eval_list(visitor_t *v, ast_t *e) { ast_t *arg1 = eval_expr(v, args->car); print(arg1); + printf("\n"); return arg1; } |