lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


On Thu, 17 Jul 2008 12:12:19 -0400
"Eduardo Ochs" <eduardoochs@gmail.com> wrote:

> Hi Michael,
> 
>   pack = function (...) return arg end

Or perhaps;
	pack = function(...) return { ... } end

Still a little bit silly, though.

B.