Difference between revisions of "Module:Banana"

From PKC
Jump to navigation Jump to search
 
(One intermediate revision by the same user not shown)
Line 2: Line 2:


function p.hello( frame )
function p.hello( frame )
     return "Hello, world!"
     --return "Hello, world!"
    return frame
end
end


return mw.getCurrentFrame()
return p

Latest revision as of 09:32, 24 July 2021

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

local p = {} --p stands for package

function p.hello( frame )
    --return "Hello, world!"
    return frame
end

return p