[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: __tostring and string.format
- From: Roberto Ierusalimschy <roberto@...>
- Date: Wed, 8 Dec 2010 09:22:54 -0200
> > local args = { n=select('#', ...), ... }
Lua 5.2 now offers table.pack to do that:
local args = table.pack(...)
-- Roberto