Module:Roman Numeral: Revision history

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

9 June 2022

  • curprev 18:1518:15, 9 June 2022Procurator-Imperii-Romani talk contribs 10,630 bytes +10,630 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..."