Module:Sandbox/BrownHairedGirl/ExistNotRedirect

This is an old revision of this page, as edited by BrownHairedGirl (talk | contribs) at 16:40, 9 July 2019 (.). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
local getArgs = require('Module:Arguments').getArgs
local p = {}


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

end

return p