class FirstFile
  def initialize
    # do nothing in this example
  end

  def run(_a_file, *args)
    puts args

    args
  end

  def finalize
    # do nothing
  end
end