Expand table.insert test

This commit is contained in:
Mid 2025-09-06 16:23:51 +03:00
parent 3d8b09167b
commit eca0ac6fe4

View File

@ -4,7 +4,11 @@ for i = 50, 1, -1 do
table.insert(t, 1, i) table.insert(t, 1, i)
end end
for i = 50, 1, -1 do for i = 50, 25, -1 do
table.insert(t, #t + 1, i)
end
for i = 24, 1, -1 do
table.insert(t, i) table.insert(t, i)
end end