return co end local t = tuple((function() return 1, 2, nil, 4, 5 end)()) print(t()) --> 1 2 nil 4 5 | easily unpack for multiple args local a, b, ...
確定! 回上一頁