ABORT — Abort the program ¶CALL ABORT
ABORT causes immediate termination of the program. On operating
systems that support a core dump, ABORT produces a core dump.
It also prints a backtrace, unless -fno-backtrace is given.
Subroutine
Does not return.
program test_abort integer :: i = 1, j = 2 if (i /= j) call abort end program test_abort
GNU extension
EXIT — Exit the program with status.,
KILL — Send a signal to a process,
BACKTRACE — Show a backtrace