Page history
Jump to navigation
Jump to search
9 June 2022
no edit summary
+26
no edit summary
+44
no edit summary
+67
no edit summary
no edit summary
+67
no edit summary
+86
Created page with "local function split(source, sep) local result = { [1] = '', [2] = '', [3] = '' } local count = 1 for c in source:gmatch('.') do if (c == sep) then count = count + 1 end if (result[count] == nil or result[count] == '') then result[count] = c else result[count] = result[count] .. c end if (c == sep) then count = count + 1 end end return result end l..."
+10,630