method

kill

v1_8_6_287 - Show latest stable - Class: IRB::JobManager
kill(*keys)
public

No documentation available.

# File lib/irb/ext/multi-irb.rb, line 64
    def kill(*keys)
      for key in keys
        th, irb = search(key)
        IRB.fail IrbAlreadyDead unless th.alive?
        th.exit
      end
    end