| #include "compiler.h" |
| #include "lisp.h" |
| #include "gc.h" |
| #include "plat/plat.h" |
| |
| int main(int argc, char **argv) |
| { |
| if (argc < 2) |
| { |
| puts("pass the program you want to run as the first argument please"); |
| return 1; |
| } |
| |
| bool ok; |
| struct environment *env = NULL; |
| struct error compile_error; |
| if (!IS_OKAY((compile_error = compile_file(argv[1], &env)))) |
| { |
| ereport(compile_error); |
| goto done; |
| } |
| |
| struct function *lisp_main_f = find_function(env, "main"); |
| |
| if (lisp_main_f) |
| { |
| value_t (*lisp_main)() = lisp_main_f->def0; |
| gc_set_base_here(); |
| lisp_main(); |
| } |
| else |
| { |
| fprintf(stderr, "No MAIN function defined! nothing to do\n"); |
| } |
| |
| done: |
| free_all(); |
| if (env) |
| del_env(env); |
| } |