Jump to content

Module:Sandbox/Jackmcbarn

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by Jackmcbarn (talk | contribs) at 21:16, 16 July 2014 (test timer pausing). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

local p = {}

function p.wastetime(frame)
	repeat until os.clock() > 9.5
	return '9.5 seconds of Lua time have now elapsed'
end

function p.echoArgument(frame)
	return frame.args[1]
end

function p.checkTime(frame)
	return 'os.clock is now ' .. os.clock()
end

return p