lua-users home
lua-l archive

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


Jeff Wise wrote:

Now I have to determine how to identify those parms
discretely.  I will try to do this before asking for help!

I imagine you've figured this out by now, but in case
someone browsing the archive is stumped, there are two basic
ways to do it:

 -- Put all of the vararg arguments into a table:
 local arg = {...}

or

 -- Get an individual vararg argument:
 Parm2 = select(2, ...)

--
Aaron
http://arundelo.com/