diff options
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); |