summaryrefslogtreecommitdiff
path: root/src/main.c
diff options
context:
space:
mode:
authorPreston Pan <preston@nullring.xyz>2023-01-07 12:22:37 -0800
committerPreston Pan <preston@nullring.xyz>2023-01-07 12:22:37 -0800
commit8edafecb633fec2b6327d996c1e7c282f4f1792f (patch)
tree7851d4ca6072ed8a3f5dd874cfe9d55abd95e1d0 /src/main.c
parentf57062553ab1451361b76128c4db29c5908f70b1 (diff)
fixing print
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.c b/src/main.c
index 5315549..db5846d 100644
--- a/src/main.c
+++ b/src/main.c
@@ -164,7 +164,7 @@ int main(int argc, char **argv) {
parser_t *parser = init_parser(lexer);
visitor_t *visitor = init_visitor(parser);
ast_t *root = eval(visitor);
- print_root(root);
+ /* print_root(root); */
}
return 0;