[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: Constant table overflow
- From: Tore Lund <tl001@...>
- Date: Wed, 16 May 2001 10:04:09 +0200
Roberto Ierusalimschy wrote:
>
> One way around this limitation is to nest
> the function definitions inside other functions, as the limit is per function:
>
> function createStr ()
> Str = {}
> function Str:disp () end
> function Str:pack () end
> function Str:unpack (s) end
> function Str:clear () end
> function Str:size () end
> function Str:new (dim) end
> end
>
> function createNum ()
> ...
> end
Thanks to both of you. I keep marveling at the flexibility of this
language.
--
Tore