Development Ruby

def polar(x,y)
  return Math.hypot(y,x), Math.atan2(y,x)
end