[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: Fragile Recursion?
- From: Wim Couwenberg <wim.couwenberg@...>
- Date: Tue, 10 Apr 2012 22:47:57 +0200
> _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