local keys = {}
for i = 1, 3000 do
keys[i] = "k_" .. i
end
function _bench()
local arr = {}
for i = 1, 8000 do
arr[i] = i
end
local hash = {}
for i = 1, 3000 do
hash[keys[i]] = i * 3
end
return arr[8000] + hash[keys[3000]]
end
for i = 1, 130 do _bench() end
print("tables/fill: true")