Difference between revisions of "Module:Bananas"

From Cysteinome
Jump to: navigation, search
(Created page with "local p = {} -- p stands for package function p.hello( frame ) return "Hello, world!" end return p")
 
Line 1: Line 1:
local p = {} -- p stands for package
+
local p = {}  
 
 
 
function p.hello( frame )
 
function p.hello( frame )
 
     return "Hello, world!"
 
     return "Hello, world!"

Revision as of 01:08, 1 December 2018

local p = {} function p.hello( frame )

   return "Hello, world!"

end

return p