can now resolve AST nodes

This commit is contained in:
2024-10-13 19:07:49 -04:00
parent 77735953a5
commit d67e612ff9
12 changed files with 351 additions and 214 deletions

View File

@@ -2,8 +2,10 @@
mod util;
mod compiler;
mod ir;
mod parser;
fn main() {
compiler::main();
parser::main();
// compiler::main();
}