Lua Code: local t = {}. t[3] = 3. t[4] = 7. t[6] = 4. print(#t) -- 0. print(unpack(t)) -- nil. I was always thinking that table.unpack can't ...
確定! 回上一頁