Module:number list/data/urk

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

local numbers = export.numbers


numbers = {
	cardinal = "ซา",
	ordinal = "ลามูลา"
}

local units_cardinal = {"เซอ", "ดูวา", "ตีกฺา", "ปัยจ", "ลีมา", "นัม", "ตูโยฺะฮ", "ลาปัด", "เซอมีลัด"}

local function gen_ordinal(num)
	return "เกอ" .. num
end

for i = 2, 9 do
	numbers = {
		cardinal = units_cardinal,
		ordinal = gen_ordinal(units_cardinal)
	}
end

local function gen_teens(num)
	return num .. "เบอลัยฮ"
end
for i = 11, 19 do
	local base_num = units_cardinal
	numbers = {
		cardinal = gen_teens(base_num)
	}
end

local function gen_tens_cardinal(num)
	return num .. "ปูโละฮ"
end
for i, base_num in ipairs(units_cardinal) do
	numbers = {
		cardinal = gen_tens_cardinal(base_num)
	}
end
numbers.ordinal = gen_ordinal(numbers.cardinal)

numbers = {
	cardinal = "ราตุยฮ",
}

return export