Editing Module:Roman Numeral
Revision as of 18:15, 9 June 2022 by Procurator-Imperii-Romani (talk | contribs) (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...")
Warning: You are not logged in. Your IP address will be publicly visible if you make any edits. If you log in or create an account, your edits will be attributed to your username, along with other benefits.