Module:Test: Difference between revisions

From Test Wiki
Jump to navigation Jump to search
(create test page)
 
No edit summary
Line 5: Line 5:
]]
]]


local _module = {}
local p ={}
function p.Main(frame)
return frame:preprocess( "{{#expr:1+1}}" )
end
return p

Revision as of 09:50, 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( "{{#expr:1+1}}" )
end
return p