Module:Test

From Test Wiki
Revision as of 17:41, 16 April 2021 by Q8j (talk | contribs)
Jump to navigation Jump to search
--[[ 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)
	if mw.isSubsting() then
		return 'サブスト'
	else
		return 'そのまま'
	end
	
end
return p