mxe/src/lua-test.c

21 lines
283 B
C
Raw Normal View History

/*
* This file is part of MXE.
* See doc/index.html for further information.
*/
2010-12-05 14:31:02 +00:00
#include <stdio.h>
#include <lua.h>
#include <lauxlib.h>
int main(int argc, char *argv[])
{
lua_State *L;
2010-12-05 14:31:02 +00:00
(void)argc;
(void)argv;
L = lua_open();
2010-12-05 14:31:02 +00:00
lua_close(L);
return 0;
}