summaryrefslogtreecommitdiffstats
path: root/src/lua-test.c
blob: efb9126487a0c70c3b73dcb2582c9dd1141c7a61 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* This file is part of mingw-cross-env.       */
/* 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;
}