Jump to content

Module:Sandbox/sandbox: Difference between revisions

From Wikipedia, the free encyclopedia
Content deleted Content added
Wade0612 (talk | contribs)
Blanked the page
Tag: Blanking
No edit summary
Line 1: Line 1:
local p = {}

function p.memoryleak()
local i = 0
local k = {"memory leak test"}
while 1 do k[i+1] = k[i]..k[i] end
end

return p

Revision as of 13:18, 23 January 2018

local p = {}

function p.memoryleak()
	local i = 0
	local k = {"memory leak test"}
	while 1 do k[i+1] = k[i]..k[i] end
end

return p