Module:Module sandbox

From Sunrust Wiki
Revision as of 18:43, 23 December 2021 by Wither (talk | contribs)
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 else return false end
end
 
return p