Jump to content

Module:If preview/preview warning counter

From Wikipedia, the free encyclopedia
This is the current revision of this page, as edited by Awesome Aasim (talk | contribs) at 17:07, 20 September 2024. The present address (URL) is a permanent link to this version.
(diff) ← Previous revision | Latest revision (diff) | Newer revision → (diff)
local p = {
	count = 0
}

function p.incr()
	p.count = p.count + 1
	return p.count
end

return p