summaryrefslogtreecommitdiffstats
path: root/src/lua-test.c
blob: 249ff418b236e90ec05a62021154c6237a7e268a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/*
 * This file is part of MXE.
 * See doc/index.html for further information.
 */

#include <stdio.h>
#include <lua.h>
#include <lauxlib.h>

int main(int argc, char *argv[])
{
    lua_State *L;

    (void)argc;
    (void)argv;

    L = lua_open();
    lua_close(L);
    return 0;
}