blob: f9ad122f0a1f0f1c84d4529ba761c0320e6a810b [file] [log] [blame]
#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 = compile_file(argv[1], &ok);
if (!ok)
{
fprintf(stderr, "Could not open %s\n", argv[1]);
return 1;
}
value_t (*lisp_main)() = find_function(env, "main")->def0;
gc_set_base_here();
lisp_main();
free_all();
del_env(env);
}