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

#include <iostream>

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

    ast->print();
    
    return 0;
}