Module:Tcw: Difference between revisions
Jump to navigation
Jump to search
testing the tcw module and template |
No edit summary |
||
| Line 1: | Line 1: | ||
local p = {} | local p = {} | ||
function p.hello( frame | function p.hello( frame ) | ||
return "Hello, world!" .. | return "Hello, world!" .. frame.args[0] | ||
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[0]
end
return p