From 4fc423446c5f093483a4f20094904fa8b4ff88ba Mon Sep 17 00:00:00 2001 From: Preston Pan Date: Wed, 4 Jan 2023 12:03:26 -0800 Subject: parsing mostly works --- src/visitor.c | 1 + 1 file changed, 1 insertion(+) (limited to 'src/visitor.c') diff --git a/src/visitor.c b/src/visitor.c index 3c28245..a6fc040 100644 --- a/src/visitor.c +++ b/src/visitor.c @@ -41,6 +41,7 @@ bool is_built_in(ast_t *e) { strcmp(cmp, "cons") == 0) return true; + /* Comparison functions */ if (strcmp(cmp, "<") == 0 || strcmp(cmp, ">") == 0 || strcmp(cmp, "=") == 0 || strcmp(cmp, "<=") == 0 || strcmp(cmp, ">=") == 0 || strcmp(cmp, "eq") == 0) -- cgit