aboutsummaryrefslogtreecommitdiffstats
path: root/c_compiler
diff options
context:
space:
mode:
authorYann Herklotz <ymherklotz@gmail.com>2017-03-01 17:35:06 +0000
committerYann Herklotz <ymherklotz@gmail.com>2017-03-01 17:35:06 +0000
commit34d69709e621b9609833a3d6bae31195b425f2f8 (patch)
tree1bc87404f517cc26700e361d421ea6e0e665eec4 /c_compiler
parente9644f6b24360e55c865c99d9ffbf285cb9d61a0 (diff)
downloadCompiler-34d69709e621b9609833a3d6bae31195b425f2f8.tar.gz
Compiler-34d69709e621b9609833a3d6bae31195b425f2f8.zip
Adding compiler to makefile
Diffstat (limited to 'c_compiler')
-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;
}