Module:User:IsomorphycSandbox/update diacritic/data

From Wiktionary, the free dictionary
Jump to navigation Jump to search

This is a private module sandbox of IsomorphycSandbox, for their own experimentation. Items in this module may be added and removed at IsomorphycSandbox's discretion; do not rely on this module's stability.


local export = {}

values = {}

function export.inc(n)
	if values[n] == Nil then values[n] = 1 else values[n] = values[n] + 1 end
	return values[n]
end

return export