diff options
author | Marvin Borner | 2021-07-27 21:10:34 +0200 |
---|---|---|
committer | Marvin Borner | 2021-07-27 21:10:34 +0200 |
commit | bfdc8d2d843c08bd01517256a63518d03da236f6 (patch) | |
tree | 399cfdb73a1716b8d8f6efb1447990f917a9242a /src/main.c | |
parent | 56c2a240f379ca3d12b1bb5a9950c1663ba33763 (diff) |
Started treeify
Diffstat (limited to 'src/main.c')
-rw-r--r-- | src/main.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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); |