class Byebug::InterruptCommand

def execute

def execute
  unless Byebug.interrupt_last
    context = Byebug.thread_context(Thread.main)
    context.interrupt
  end
end