[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: Subroutine arguments not right yet
- From: "Aaron Brown" <arundelo@...>
- Date: Fri, 19 Oct 2007 13:51:59 -0400
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/