Module:If preview/preview warning counter

From English Wikipedia @ Freddythechick

This is the current revision of this page, as edited by imported>Awesome Aasim at 18:07, 20 September 2024. The present address (URL) is a permanent link to this version.

(diff) ← Older 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