Module:User:Benwing2/category tree/topic/Numbers

Hello, you have come here looking for the meaning of the word Module:User:Benwing2/category tree/topic/Numbers. In DICTIOUS you will not only get to know all the dictionary meanings for the word Module:User:Benwing2/category tree/topic/Numbers, but we will also tell you about its etymology, its characteristics and you will know how to say Module:User:Benwing2/category tree/topic/Numbers in singular and plural. Everything you need to know about the word Module:User:Benwing2/category tree/topic/Numbers you have here. The definition of the word Module:User:Benwing2/category tree/topic/Numbers will help you to be more precise and correct when speaking or writing your texts. Knowing the definition ofModule:User:Benwing2/category tree/topic/Numbers, as well as those of other words, enriches your vocabulary and provides you with more and better linguistic resources.


local labels = {}

labels = {
	type = "related-to",
	description = "default",
	parents = {"all topics"},
}

for _, number in ipairs {
	"zero", "one", "two", "three", "four", "five", "six", "seven", "eight", "nine", "ten", 
	"eleven", "twelve", "thirteen", "fourteen", "fifteen", "sixteen", "seventeen", "eighteen", "nineteen",
	"twenty", "thirty", "forty", "fifty", "sixty", "seventy", "eighty", "ninety", "one hundred", "one thousand",
} do
	local bare_number = number:gsub("^one ", "")
	labels = {
		type = "related-to",
		description = ("=the number ] (] or ])"):format(number),
		parents = {"numbers"},
	}
end

labels = {
	type = "set",
	description = "default",
	parents = {"numbers"},
}

return labels