Module:Price: Difference between revisions

From Roat Pkz
Jump to navigation Jump to search
No edit summary
No edit summary
Line 2: Line 2:
local p = {}
local p = {}


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


return p
return p

Revision as of 18:24, 3 April 2024

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

local p = {}

function p.main( frame )
    return 'Hello, world!'
end

return p