class Vector

def +(other)

def +(other)
  Vector[@x + other.x, @y + other.y]
end