class Byebug::InfoCommand

def info_program(*args)

def info_program(*args)
  return print "The program crashed.\n" + Byebug.last_exception ?
               "Exception: #{Byebug.last_exception.inspect}" : "" + "\n" if
    @state.context.dead?
  print "Program stopped. "
  info_stop_reason @state.context.stop_reason
end