class Byebug::PryProcessor

def n_hits(breakpoint)

def n_hits(breakpoint)
  n_hits = breakpoint.hit_count
  n_hits == 1 ? "First hit" : "Hit #{n_hits} times."
end