Module:Module sandbox
Jump to navigation
Jump to search
Documentation for this module may be created at Module:Module sandbox/doc
local p = {} --p stands for package function p.test( frame ) if frame.args.testval then return "true" .. type(frame.args.testval) else return false end end return p