DEBUG.SUSPEND
built-in procedureThis procedure suspends execution of the current program unit and transfers control to the Interpreter.
PROCEDURE DEBUG.SUSPEND;
/*
** This example uses DEBUG.SUSPEND
*/
PROCEDURE proc1 IS
BEGIN
FOR i IN 1..10 LOOP
DEBUG.SUSPEND;
TEXT_IO.PUT_LINE('Hello');
END LOOP;
END;
About the DEBUG
built-in package
Copyright © 1984, 2005, Oracle. All rights reserved.