Module:Sandbox/Jackmcbarn

This is an old revision of this page, as edited by Jackmcbarn (talk | contribs) at 15:19, 18 April 2014 (smuggle state). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

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