Next: SPACING, Previous: SIZEOF, Up: Intrinsic Procedures [Contents][Index]
SLEEP
— Sleep for the specified number of secondsCalling this subroutine causes the process to pause for SECONDS seconds.
GNU extension
Subroutine
CALL SLEEP(SECONDS)
SECONDS | The type shall be of default INTEGER . |
program test_sleep call sleep(5) end