From ebbcbf8484d74cfccd0b39abf661dbc14fd2dc5d Mon Sep 17 00:00:00 2001 From: Benoit Giannangeli Date: Thu, 16 Feb 2017 07:51:01 +0100 Subject: lua_pushnumber --- tests/C/Makefile | 8 ++++++++ tests/C/lua_pushnumber.c | 21 +++++++++++++++++++++ 2 files changed, 29 insertions(+) create mode 100644 tests/C/Makefile create mode 100644 tests/C/lua_pushnumber.c (limited to 'tests/C') diff --git a/tests/C/Makefile b/tests/C/Makefile new file mode 100644 index 0000000..28ff1c2 --- /dev/null +++ b/tests/C/Makefile @@ -0,0 +1,8 @@ +CC= gcc-6 -std=gnu99 +CFLAGS= -g -Wall -Wextra + +LIBS= -lm -llua + +all: + $(CC) $(CFLAGS) $(LIBS) lua_pushnil.c -o lua_pushnil.out + $(CC) $(CFLAGS) $(LIBS) lua_pushnumber.c -o lua_pushnumber.out \ No newline at end of file diff --git a/tests/C/lua_pushnumber.c b/tests/C/lua_pushnumber.c new file mode 100644 index 0000000..eca2564 --- /dev/null +++ b/tests/C/lua_pushnumber.c @@ -0,0 +1,21 @@ +#include +#include +#include +#include +#include + +int main(void) { + + lua_State *L = luaL_newstate(); + + luaL_openlibs(L); + + lua_pushnumber(L, 10); + + printf("L->top(%d): %s\n", lua_gettop(L), luaL_typename(L, lua_gettop(L))); + + lua_close(L); + + return 0; + +} \ No newline at end of file -- cgit v1.2.3-70-g09d2