class IRB::Pager

def page_content(content)

def page_content(content)
  if content_exceeds_screen_height?(content)
    page do |io|
      io.puts content
    end
  else
    $stdout.puts content
  end
end