Module:Sandbox/CAS222222221
Appearance
local getArgs = require('Module:Arguments').getArgs
local p = {}
local function core(a)
if a == nil then return '' end
a = '<b>' .. a .. '</b>'
return a
end
function p.main(frame)
local args = getArgs(frame)
return p._main(args)
end
function p._main(args)
-- Main module code goes here.
return core(args[1])
end
return p