lua-users home
lua-l archive

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


> A local variable named 'arg' is always created, but as long as you
> never reference it, the table it used to refer to is not created.

Almost this. Instead of checking whether `arg´ is used, Lua checks
whether `...' is not used. (It was easier to implement :)

-- Roberto