You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
mxe/src/guile-test.c

19 lines
393 B

/* This file is part of MXE. */
/* See doc/index.html for further information. */
#include <libguile.h>
static void inner_main(void *data, int argc, char *argv[])
{
(void)data;
(void)argc;
(void)argv;
scm_c_eval_string("(display \"Hello World!\\n\")");
}
int main(int argc, char *argv[])
{
scm_boot_guile(argc, argv, inner_main, NULL);
return 0;
}