Jump to content

Module:Sandbox/sandbox: Difference between revisions

From Wikipedia, the free encyclopedia
Content deleted Content added
No edit summary
No edit summary
Line 1: Line 1:
-- NOTICE: For an editable module sandbox that anyone can use, please go to Module:Sandbox/testcases. You can also test usong a subpage like: Module:Sandbox/Your Name/sandbox, where Your Name is your username. Thank you!
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
return tostring(k)
end

return p

Revision as of 18:02, 18 December 2018

-- NOTICE: For an editable module sandbox that anyone can use, please go to Module:Sandbox/testcases. You can also test usong a subpage like: Module:Sandbox/Your Name/sandbox, where Your Name is your username. Thank you!