Page history
Jump to navigation
Jump to search
6 July 2023
30 June 2023
29 June 2023
no edit summary
−9
no edit summary
+68
no edit summary
+2
no edit summary
−2
no edit summary
−31
Sware moved page Module:Base not 10 to Module:number base without leaving a redirect
mCreated page with "local export = {} local floor, insert = math.floor, table.insert function export.base12(n) n = floor(tonumber(n)) local digits = "0123456789¹²" local t = {} local sign = "" repeat local d = (n % 12) + 1 n = floor(n / 12) insert(t, 1, digits:sub(d,d)) until n == 0 return sign .. table.concat(t,"") end return export"
+372