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.
local p = {
count = 0
}
function p.incr()
p.count = p.count + 1
return p.count
end
return p