Module:Nth: 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.

10 March 2022

  • curprev 15:4315:43, 10 March 2022MusikAnimal talk contribs 312 bytes +312 Created page with "local p = {} function p._main(str) local digit = string.sub(str, -1) if digit == '1' then return str .. 'st' elseif digit == '2' then return str .. 'nd' elseif digit == '3' then return str .. 'rd' else return str .. 'th' end end function p.main(frame) return p._main(frame.args[1]) end return p"