Module:MapMarkersHelper: Difference between revisions
From Horizon Wiki Mirror
Content deleted Content added
imported>Starfox9507 Created page with "local getArgs = require('Module:Arguments').getArgs local p = {} function p.main(frame) local args = getArgs(frame) return p._main(args) end function p._main(args) -- Main module code goes here. end return p" |
imported>Starfox9507 No edit summary |
||
| Line 8: | Line 8: | ||
function p._main(args) |
function p._main(args) |
||
print(args) |
|||
-- Main module code goes here. |
|||
end |
end |
||
Revision as of 22:54, 23 September 2023
Documentation for this module may be created at Module:MapMarkersHelper/doc
local getArgs = require('Module:Arguments').getArgs
local p = {}
function p.main(frame)
local args = getArgs(frame)
return p._main(args)
end
function p._main(args)
print(args)
end
return p