Ser/bigtest.lua
Robin Wellner 8cf0f0df6e Add support for lots of tables (> 200)
Now only a single variable is used (_).

What effect does this have on the file size and runtime? I have no idea.
I don't think it'll be *that* much, though.
2014-12-23 23:56:46 +01:00

13 lines
186 B
Lua

local serialize = require 'ser'
local t = {}
for i = 1, 15 do
t[i] = {}
for j = 1, 10 do
t[i][j] = {{'woo'}}
end
end
local s = serialize(t)
print(s)
loadstring(s)()