Module:MapMarkersHelper: Difference between revisions
From Horizon Wiki Mirror
Content deleted Content added
imported>Starfox9507 No edit summary |
imported>Starfox9507 No edit summary |
||
| Line 8: | Line 8: | ||
function p._main(args) |
function p._main(args) |
||
print("blah") |
|||
return args |
return args |
||
end |
end |
||
Revision as of 22:59, 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("blah")
return args
end
return p