Still working on standards.

This commit is contained in:
2026-02-14 23:35:41 +00:00
parent 5a3c126100
commit e2ad04b692
18 changed files with 1046 additions and 234 deletions

View File

@@ -35,7 +35,7 @@ end
-- Iterate (ipairs without the index)
function iterate(...)
local iterator,tab,i = pairs(...)
local iterator,tab,i = ipairs(...)
return function(...)
local index,item = iterator(tab,i)
i = index