Print input source

This commit is contained in:
Bruce Hill 2024-02-10 15:36:35 -05:00
parent 2c9ee0c629
commit 87f7c5c5d8

View File

@ -31,6 +31,12 @@ int main(int argc, char *argv[])
if (!ast)
errx(1, "Could not compile!");
if (getenv("VERBOSE")) {
FILE *out = popen(heap_strf("bat --file-name='%s'", argv[1]), "w");
fputs(f->text, out);
fclose(out);
}
if (getenv("VERBOSE")) {
FILE *out = popen("bat --file-name=AST", "w");
fputs(ast_to_str(ast), out);