diff --git a/src/jitters.c b/src/jitters.c index 278f70e..3714854 100644 --- a/src/jitters.c +++ b/src/jitters.c @@ -2,6 +2,7 @@ #include #include "ast/ast.h" +#include "print/printer.h" #include "parse/parse-jitters.h" int main(void) @@ -10,7 +11,8 @@ int main(void) int ret = 0; yydebug = getenv("PARSE") != NULL; if ((ret = yyparse(&ast)) == 0) { - /* Nothing */ + printer_ast(ast); + putchar('\n'); } destroy_ast(ast);