class Vector

def dot(other)

def dot(other)
  @x * other.x + @y * other.y
end