lua-users home
lua-l archive

Re: local scope once again

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


This behaviour means that all earlier local declarations of the
variable become completely shadowed by later local declarations at the
same scope. I am afraid it makes code less readable.
local x="first declaration"
local x="second declaration" -- the same scope
Then don't write code like that. Problem solved.
Russ

AltStyle によって変換されたページ (->オリジナル) /