[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: Making lua case insensitive
- From: Steve Dekorte <steve@...>
- Date: Fri, 8 Dec 2000 13:22:59 -0800
Bret Mogilefsky wrote:
> Better instead to put in setglobal/getglobal functions that check whether the
> variable has been earlier "declared" by calling a special function.
How did you deal with locals?
Example:
function test()
local aString = ""
print(astring)
end
Seems like you'd need a way of looking at the stack in this case. upvalues?
Steve