বিষয়বস্তুতে চলুন

মডিউল:count

উইকিঅভিধান, মুক্ত অভিধান থেকে

এই মডিউলের জন্য মডিউল:count/নথি-এ নথিপত্র তৈরি করা হয়ে থাকতে পারে

local Count = {}

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

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

return Count