mirror of
https://github.com/gvx/bitser.git
synced 2024-11-24 06:54:20 +00:00
6 lines
93 B
Lua
6 lines
93 B
Lua
|
local t = {}
|
||
|
local x = {10, 50, 40, 30, 20}
|
||
|
for i = 1, 40 do
|
||
|
t[i] = x
|
||
|
end
|
||
|
return t, 10000, 3
|