aboutsummaryrefslogtreecommitdiffstats
path: root/c_compiler/src/parser_main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'c_compiler/src/parser_main.cpp')
-rw-r--r--c_compiler/src/parser_main.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/c_compiler/src/parser_main.cpp b/c_compiler/src/parser_main.cpp
index 9626334..02dcfeb 100644
--- a/c_compiler/src/parser_main.cpp
+++ b/c_compiler/src/parser_main.cpp
@@ -5,11 +5,7 @@
int main(int argc, char *argv[]) {
ast_Top *ast = parseAST();
- std::cout << "<?xml version=\"1.0\"?>" << std::endl << "<Program>" << std::endl;
-
ast->print();
-
- std::cout << "</Program>" << std::endl;
return 0;
}