Jump to content

Module:User:Anomie/Sandbox

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by Anomie (talk | contribs) at 17:23, 4 March 2014 (test). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
local p = {}

function p.delay( frame )
	local t = os.time() + 5
	while os.time() < t do end
	return ''
end

return p