Sleep

STD.System.Debug.Sleep ( duration )

durationAn integer value specifying the length of the sleep period, in milliseconds.
Return:Sleep does not return a value.

The Sleep function pauses processing for duration milliseconds.

Example:

IMPORT STD;
STD.System.Debug.Sleep(1000);    //pause for one second before continuing