Pergi ke kandungan

Modul:count

Daripada Wikikamus

local Count = {}

function Count:__index(key)
	self[key] = 0
	return 0
end

function Count:new()
	return setmetatable({}, self)
end

return Count