|
On Feb 12, 2013, at 1:17 PM, Peter Slížik <peter.slizik@gmail.com> wrote:
Imagine Lua did local-by-default and you write a script with this line:
foo = true
You assume that "foo" is local, and it works when you test it. Unbeknownst to you, in deployed use, some other script loaded in the same Lua state had created a
global variable "foo" for some other purpose. As far as Lua can tell, your "foo" is referring to the global one. You've now broken their script, or they'll later break yours.
No?
-hadriel
|