-- before Lua 5.3: print(unpack({1, 2, 4})) -- 1 2 3 -- after Lua 5.3: print(table.unpack({1, 2, 4}))