[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: Constant table overflow
- From: Luiz Henrique de Figueiredo <lhf@...>
- Date: Tue, 15 May 2001 17:00:03 -0300 (EST)
>So, the bottom line seems to be that, in a 16-bit version, there can
>only be 29-30 functions in a chunk or inside another function. Am I
>right?
Yes. A chunk is actually an ordinary function and so all functions defined
inside a chunk are actually "functions defined inside a function".
If you more functions in a chuk, try this:
local DOIT
DOIT=function ()
-- define some functions here
end
DOIT()
DOIT=function ()
-- define some more functions here
end
DOIT()
...
--lhf