Difference between revisions of "Module:Banana"

From PKC
Jump to navigation Jump to search
Line 2: Line 2:


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


return mw.getCurrentFrame()
return p

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 
end

return p