lua-users home
lua-l archive

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


> There is a limit in the number of constants in a single source file set
> at 2^18.

Actually, the limit is per function. So you could do something like this:

T={}
f=function (T)
	-- populate some entries of T
end
f()

f=function (T)
	-- populate some some entries of T
end
f()
...