Difference between revisions of "Module:Banana"

From PKC
Jump to navigation Jump to search
(Created page with "local p = {} --p stands for package function p.hello( frame ) return "Hello, world!" end return p")
 
 
(3 intermediate revisions 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 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