integer constant program working up to ir

This commit is contained in:
water
2020-09-06 12:45:31 -04:00
parent 2b67b1078f
commit 8bf0bd86d3
20 changed files with 1142 additions and 34 deletions
+3 -3
View File
@@ -1,13 +1,13 @@
#include <cstdio>
#include "goalc/goos/Interpreter.h"
#include "goalc/compiler/Compiler.h"
int main(int argc, char** argv) {
(void)argc;
(void)argv;
printf("goal compiler\n");
goos::Interpreter interp;
interp.execute_repl();
Compiler compiler;
compiler.execute_repl();
return 0;
}