Hello, I'm new to lua. I would like to do the opposite of unpack(). Example: function test() return 1, 2, 3 end t = pack(test()) print(t[1])
Michael