Module:Test: Difference between revisions

From Test Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 7: Line 7:
local p ={}
local p ={}
function p.Main(frame)
function p.Main(frame)
return "AA"
return frame:preprocess( '{{support}}' )
end
end
return p
return p

Revision as of 09:52, 6 April 2021

--[[ This is a test page for testing lua in mediawiki
place your code below this comment
please remove when you are done testing,
Thank You! and have fun
]]

local p ={}
function p.Main(frame)
	return frame:preprocess( '{{support}}' )
end
return p