Difference between revisions of "Module:Banana"

From PKC
Jump to navigation Jump to search
 
Line 3: Line 3:
function p.hello( frame )
function p.hello( frame )
     --return "Hello, world!"
     --return "Hello, world!"
     return  
     return frame
end
end


return p
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