Module:Sandbox/Flarn2006/InfiniteLoopTest

Revision as of 03:25, 24 September 2021 by 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')
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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