Jump to content

Module:Swap

From Wikipedia, the free encyclopedia
local p = {}

function p.main(frame)
  x = frame.args[1]
  y = frame.args[3]
  sep = frame.args[2] or frame.args.sep
  x,y = '' .. y .. '' .. sep .. '' .. x .. ''
  return x,y
end
return p