require_relative "rectangle.rb"

class Square < Rectangle
  def side= value
    @length = @height = value
  end

  def side
    @length
  end
end
