exit!(*args)
  public
  
    
    
Exits the process immediately. No exit
handlers are run. status is returned to the underlying system as the exit status.
Process.exit!(true)
   
  
    Show source    
    
      static VALUE
rb_f_exit_bang(int argc, VALUE *argv, VALUE obj)
{
    int istatus;
    if (rb_check_arity(argc, 0, 1) == 1) {
        istatus = exit_status_code(argv[0]);
    }
    else {
        istatus = EXIT_FAILURE;
    }
    _exit(istatus);
    UNREACHABLE;
}