lua-users home
lua-l archive

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


> local args = ...

This only gets the first argument.
To get them all, so that you can loop over them, use
	local arg={...}