Module:Sandbox/BrownHairedGirl/ExistNotRedirect

This is an old revision of this page, as edited by BrownHairedGirl (talk | contribs) at 16:48, 9 July 2019 (for i, v in ipairs(mw.getCurrentFrame():getParent().args)). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
local p = {}


function p.main(args)
local retval = ""
for i, v in ipairs(mw.getCurrentFrame():getParent().args) do
retval = retval .. i .. "/" .. v .. "\n"
end
return retval

end

return p