class Vector

def initialize(x, y)

def initialize(x, y)
  @x, @y = x, y
  freeze
end