exit!(p1 = v1)
  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)
{
    VALUE status;
    int istatus;
    if (argc > 0 && rb_scan_args(argc, argv, "01", &status) == 1) {
        istatus = exit_status_code(status);
    }
    else {
        istatus = EXIT_FAILURE;
    }
    _exit(istatus);
    UNREACHABLE;
}