lua-users home
lua-l archive

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


> >  local args = { n=select('#', ...), ... }

Lua 5.2 now offers table.pack to do that:

  local args = table.pack(...)

-- Roberto