User Tools

Site Tools


lua:lua

This is an old revision of the document!


LUA

c/c++

myarray = {1,2,3};

corresponds to

lua_createtable(L, 0, 3);
lua_pushinteger(L, 1);
lua_pushinteger(L, 2);
lua_pushinteger(L, 3);
lua_rawset(L, -3);
lua/lua.1220272588.txt.gz · Last modified: 2008/09/01 14:36 by deva