Module:MapMarkersHelper: Difference between revisions
From HorizonXI Wiki
Starfox9507 (talk | contribs) No edit summary |
Starfox9507 (talk | contribs) No edit summary |
||
| Line 8: | Line 8: | ||
function p._main(args) | function p._main(args) | ||
print( | print(args) | ||
return args | return args | ||
end | end | ||
return p | return p | ||
Revision as of 23:02, 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)
return args
end
return p
