Module:HelloWorld: Difference between revisions
Thanathros (talk | contribs) (Created page with "local p = {} --p stands for package function p.hello( frame ) return "Hello, world!" end return p") |
(No difference)
|
Latest revision as of 11:34, 6 October 2020
Documentation for this module may be created at Module:HelloWorld/doc
local p = {} --p stands for package
function p.hello( frame )
return "Hello, world!"
end
return p
