From Wikipedia, the free encyclopedia
require('strict')
local p = {}
p.main = function(frame)
return frame.args[1] .. ' ' .. tostring(frame.args[1]==true) .. ' ' .. tostring(not frame.args[1]==true) .. ' ' .. tostring(frame.args[1]==false) .. ' ' .. tostring(not frame.args[1]==false)
end
return p