static int l_newarray(lua_State* l) { int i, n; NumArray* a; n = luaL_checkint(l, 1); luaL_argcheck(l, n >= 1, 1, "invalid size"); a ...
確定! 回上一頁