Next: ABS, Previous: Introduction to Intrinsics, Up: Intrinsic Procedures
ABORT — Abort the programABORT causes immediate termination of the program. On operating
systems that support a core dump, ABORT will produce a core dump,
which is suitable for debugging purposes.
CALL ABORT
program test_abort
integer :: i = 1, j = 2
if (i /= j) call abort
end program test_abort