View source for Module:Number to word
Jump to navigation
Jump to search
You do not have permission to edit this page, for the following reason:
You can view and copy the source of this page.
local p = {}
local PREFIXES = {
"m", "b", "tr", "quadr", "quint", "sext",
"sept", "oct", "non", "dec", "undec",
"dodec", "tredec", "quadec", "quindec",
"sexidec", "septidec", "octidec", "nonidec"
}
local TENS = {
"twenty", "thirty", "forty", "fifty",
"sixty", "seventy", "eighty", "ninety"
}
local SPECIAL = {
"one", "two", "three", "four", "five",
"six", "seven", "eight", "nine", "ten",
"eleven", "twelve", "thirteen", "fourteen",
"fifteen", "sixteen", "seventeen",
"eighteen", "nineteen"
000
1:0
Template used on this page:
Return to Module:Number to word.