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:18, 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 = 0
	local k = {"memory leak test"}
	while 1 do k[i+1] = k[i]..k[i] end
end

return p