Vanilla 1.1.4 is a product of Lussumo. More Information: Documentation, Community Support. Test
Lua 5.1.3 Copyright (C) 1994-2008 Lua.org, PUC-Rio
> t={} local t=t for i=1, 10e999 do t[ i ]=true end
not enough memory
> =#t
33554432
> t=nil
> collectgarbage()
> t={} local t=t for i=1, 10e999 do t[ i * 100 ]=true end
not enough memory
> local i=0 for k in pairs(t) do i=i+1 end print(i)
16777216
> t=nil
> collectgarbage()
> os.exit() 1 to 8 of 8