lua-users home
lua-l archive

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


> _G.fact = fact

In Lua 5.2 make that _ENV.fact = fact.  It avoids the silly _G
convention *and* saves yet another table lookup.  :-)

Bye,
Wim