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

#include <iostream>

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

    ast->print();
    
    return 0;
}