forked from akjmicro/dclang
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.c
27 lines (26 loc) · 839 Bytes
/
main.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#include "libdclang.c"
// Where all the juicy fun begins...
int main(int argc, char **argv)
{
dclang_initialize();
//setlocale(LC_ALL, "");
if (argc > 1) {
for(int opt = 1; opt < argc; opt++) {
if (strcmp(argv[opt], "-i") == 0) {
live_repl = 1;
} else {
dclang_import(argv[opt]);
}
};
} else {
live_repl = 1;
}
if (live_repl) {
printf("Welcome to dclang! Aaron Krister Johnson, 2018-2023\n");
printf("Make sure to peruse README.md to get your bearings!\n");
printf("You can type 'primitives' to see a list of all the primitive (c-builtin) words.\n");
printf("You can type 'words' to see a list of functions defined within dclang.\n");
show_primitivesfunc();
repl();
}
}