Difference between revisions of "Module:Sandbox"

From blackwiki
Jump to navigation Jump to search
blackwiki>Scott
(Undid revision 712389316 by 67.241.15.174 (talk))
blackwiki>Luizdl
Line 1: Line 1:
 
-- Placeholder only! Do not add code.
 
-- Placeholder only! Do not add code.
 +
local t = {}
 +
 +
function t.main(frame)
 +
return type(setfenv)
 +
end
 +
 +
return t

Revision as of 02:02, 9 February 2017

Scribunto Testing Area

This is not an actual Lua module. It exists to provide a convenient pseudo-namespace for code testing, hopefully preventing the main Module: namespace from becoming littered with experiments, as Lua modules cannot exist as subpages in the User: namespace.

Please name your experimental modules in the following format to help keep things tidy:

Module:Sandbox/Your User Name/Module name

You can use Special:PrefixIndex/Module:Sandbox to list modules in this area.



-- Placeholder only! Do not add code.
local t = {}

function t.main(frame)
	return type(setfenv)
end

return t