Jump to content

Module:If preview/preview warning counter

From Wikipedia, the free encyclopedia
local p = {
	count = 0
}

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

return p