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

#include <iostream>

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

    VariableStackBindings bindings;
    int32_t var_count;
    
    ast->printasm(bindings, var_count);
    
    return 0;
}