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