lua-users home
lua-l archive

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


On Thu, Aug 20, 2015 at 11:15 AM, Parke <parke.nexus@gmail.com> wrote:
> In the first, "xml" is local.
>
> In the second, xml is converted, just like every non-local symbol, to
> _ENV['xml'].  And you just set _ENV to be an empty table.

Or maybe I am wrong in the above.  Just realized that I would expect
you to get an error when you call "require", as "require" is not in
_ENV.  But you say the error happens later.

-Parke