mirror of
https://github.com/open-goal/jak-project.git
synced 2024-11-27 08:20:47 +00:00
14 lines
211 B
C++
14 lines
211 B
C++
#include <cstdio>
|
|
#include "goalc/compiler/Compiler.h"
|
|
|
|
int main(int argc, char** argv) {
|
|
(void)argc;
|
|
(void)argv;
|
|
printf("GOAL Compiler\n");
|
|
|
|
Compiler compiler;
|
|
compiler.execute_repl();
|
|
|
|
return 0;
|
|
}
|