Module:Test

From Team Fortress Wiki
Jump to: navigation, search

Documentation for this module may be created at Module:Test/doc

local p = {}
 
function p.hello( frame )
    return frame.args[1] or "Hello, world!"
end
 
return p