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