summaryrefslogtreecommitdiff
path: root/src/05-upvalue/main.c
blob: 697eb2c3aef913e82da34e9ac0f688c9481f5315 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#include "../configure.h"
#if BUILD_TEST == TEST_5

int main(int args, char* argv[])
{
	lua_State* L = luaL_newstate();

	luaL_openlibs(L);

	luaL_dofile(L, "05-upvalue/test.lua");

	lua_close(L);

	getchar();

	return 0;
}

#endif