Documentation for this module may be created at Module:Sandbox/Gonnym/invoke/doc
local p = {}
function p.test(frame)
local getArgs = require('Module:Arguments').getArgs
local args = getArgs(frame)
one = args[1]
two = args[2]
three = args[3]
return one .. two .. three
end
return p