Jump to content

Module:Sandbox/MSGJ

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by MSGJ (talk | contribs) at 13:04, 5 September 2024. The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
require('strict')
local p = {}

p.main = function(frame)
	return frame.args[1] .. ' ' .. tostring(frame.args[1]==true) .. ' ' .. tostring(not frame.args[1]==true)
end

return p