lua-users home
lua-l archive

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


> 	this is simple is there is no local value then try a global value if
> there is no global then create a local value. 

This seems to mix up compile time with run time (locals are declared
at compile time, globals are created at run time...)

-- Roberto