11 lines
226 B
C
Executable file
11 lines
226 B
C
Executable file
#include "minijort.h"
|
|
|
|
int main(int argc, char *argv[]) {
|
|
f_init();
|
|
IN_FILE = fopen("boot.jor", "rt");
|
|
f_interpreter();
|
|
fclose(IN_FILE);
|
|
IN_FILE = stdin;
|
|
f_execcp(f_lookupcp("interpreter"));
|
|
return 0;
|
|
} |