|
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