mirror of
https://github.com/open-goal/jak-project
synced 2026-06-07 20:11:39 -04: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;
|
|
}
|