Module:Tcw: Difference between revisions

From PT National Labs
Jump to navigation Jump to search
No edit summary
No edit summary
Line 2: Line 2:


function p.hello( frame )
function p.hello( frame )
     return "Hello, world!" .. frame.args[0]
     return "Hello, world!" .. frame.args[1]
end
end


return p
return p

Revision as of 15:54, 1 July 2025

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

local p = {} 

function p.hello( frame )
    return "Hello, world!" .. frame.args[1]
end

return p