A script-enabled browser is required for this page to function properly.

DEBUG.SUSPEND built-in procedure

This procedure suspends execution of the current program unit and transfers control to the Interpreter.

Syntax

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;

See also

About the DEBUG built-in package

DEBUG built-in package