This module contains data on various types of numbers in Middle Scots.

จำนวน เชิงการนับ เชิงอันดับที่
1 a first

local export = {numbers = {}}

export.additional_number_types = {
	{key = "attributive", after = "cardinal"},
}

local numbers = export.numbers

-- Delete any number types that don't apply.
numbers[1] = {
	cardinal = "a",
	ordinal = "first",
}

return export