Module:MyModule: Difference between revisions

From EarthMC
Jump to navigation Jump to search
mNo edit summary
mNo edit summary
 
Line 1: Line 1:
print("test")
local p = {} --p stands for package
 
function p.hello( frame )
    return "Hello, world!"
end
 
return p

Latest revision as of 16:42, 7 October 2023

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

local p = {} --p stands for package

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

return p