aboutsummaryrefslogtreecommitdiffstats
path: root/c_compiler/src/compiler_main.cpp
blob: a4df8a75793a3735a614b2cb88aeee33b3011659 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include "ast.hpp"

#include <iostream>

int main(int argc, char *argv[])
{
    TranslationUnit* ast = parseAST();

    ast->printxml();
    
    return 0;
}