mirror of
https://github.com/gvx/bitser.git
synced 2024-11-24 06:54:20 +00:00
7 lines
96 B
Lua
7 lines
96 B
Lua
|
local t = {}
|
||
|
|
||
|
for i = 1, 200 do
|
||
|
t[math.random(1000)] = math.random(100)
|
||
|
end
|
||
|
|
||
|
return t, 30000, 5
|