# File lib/arr-pm/file.rb, line 21
  def initialize(file)
    if file.is_a?(String)
      file = File.new(file, "r")
    end
    @file = file
  end