Re: Opposite of unpack() in lua 5.0?
[
Date Prev][
Date Next][
Thread Prev][
Thread Next]
[
Date Index]
[
Thread Index]
- Subject: Re: Opposite of unpack() in lua 5.0?
- From: Norman Ramsey <nr@...>
- Date: 2004年7月10日 15:19:33 -0400
> 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])
>
>
> But in Lua 5.0 there isn't a pack() function, right? Why not? other
> solutions possible?
function pack(...)
return arg
end