blob: a9231b82f85d8c0e14b68ac939a4ebc14989edc9 [file] [log] [blame]
#include "compiler.h"
#include "gc.h"
#include "lisp.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);
}