aboutsummaryrefslogtreecommitdiff
path: root/src/main.c
diff options
context:
space:
mode:
authorMarvin Borner2021-07-27 21:10:34 +0200
committerMarvin Borner2021-07-27 21:10:34 +0200
commitbfdc8d2d843c08bd01517256a63518d03da236f6 (patch)
tree399cfdb73a1716b8d8f6efb1447990f917a9242a /src/main.c
parent56c2a240f379ca3d12b1bb5a9950c1663ba33763 (diff)
Started treeify
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/main.c b/src/main.c
index 74cc3d6..0e6807d 100644
--- a/src/main.c
+++ b/src/main.c
@@ -3,6 +3,7 @@
#include <log.h>
#include <preprocess.h>
#include <tokenize.h>
+#include <treeify.h>
int main(int argc, char *argv[])
{
@@ -13,7 +14,7 @@ int main(int argc, char *argv[])
preprocess(ctx);
tokenize(ctx);
lint(ctx);
- tokens_print(ctx);
+ treeify(ctx);
context_destroy(ctx);