Although the predefined unpack function is written in C, we could write it also in Lua, using recursion: function unpack (t, i) i = i or 1 if t[i] then ...
確定! 回上一頁