class Byebug::LocalInterface

def finalize

Things to do before quitting
def finalize
  if Byebug.method_defined?("annotate") and Byebug.annotate.to_i > 2
    print "\032\032exited\n\n"
  end
  if Byebug.respond_to?(:save_history)
    Byebug.save_history
  end
end