Jump to content

Module:Sandbox/sandbox

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by 111.14.130.151 (talk) at 13:25, 23 January 2018. The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
local p = {}

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

return p