Jump to content

Module:SimpleDebug/sandbox

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by Ans (talk | contribs) at 14:36, 14 November 2019 (options). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
--[[
   Add your experimental module code here.
--]]

local p = require "Module:SimpleDebug"

function p.call(frame)
	-- p.tab = frame.args.tab
	-- p.dec = frame.args.dec
	p.nowiki = frame.args.nowiki
	return p[frame.args[1]](frame.args)
end

return p