mxe/src/lua-test.c

20 lines
283 B
C
Raw Permalink Normal View History

/*
* This file is part of MXE. See LICENSE.md for licensing 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;
2012-04-15 18:40:31 +01:00
L = luaL_newstate();
2010-12-05 14:31:02 +00:00
lua_close(L);
return 0;
}