lua-users home
lua-l archive

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


> > The manual says "names", not "variables".
> 
> I'm sorry to be dense, but I don't see what you mean. Is a "name" simply
> a toplevel variable? Does it mean something more specific here?

name == identifier. It can be a global variable name, a field name,
a parameter name, a local variable name, etc. All names are names :-)

-- Roberto