Method: Kernel#abort

Defined in:
process.c

#abortObject #Kernel::abort([msg]) ⇒ Object #abort([msg]) ⇒ Object

Terminate execution immediately, effectively by calling Kernel.exit(false). If msg is given, it is written to STDERR prior to terminating.



4531
4532
4533
4534
4535
4536
# File 'process.c', line 4531

static VALUE
f_abort(int c, const VALUE *a, VALUE _)
{
    rb_f_abort(c, a);
    UNREACHABLE_RETURN(Qnil);
}