imported>Flarn2006
Created page with '-- curious how much time Wikipedia gives computations local p = {} function p.time() return tostring(os.time()) end function p.loop() while true do end end return p'
 
(No difference)

Latest revision as of 03:25, 24 September 2021

Documentation for this module may be created at Module:Sandbox/Flarn2006/InfiniteLoopTest/doc

-- curious how much time Wikipedia gives computations

local p = {}

function p.time()
	return tostring(os.time())
end

function p.loop()
	while true do end
end

return p