this is the first time this module was called on this page, time is 0.00478
local p = {}
function p.main(frame)
local oldClock = os.clock()
mw.loadData('Module:Sandbox/Jackmcbarn/slow')
if os.clock() - oldClock > 0.001 then
return 'this is the first time this module was called on this page, time is ' .. os.clock() - oldClock
else
return 'this module has previously been called on this page, time is ' .. os.clock() - oldClock
end
end
return p