-
Notifications
You must be signed in to change notification settings - Fork 2
_sleep
bergsma edited this page Sep 26, 2014
·
3 revisions
#sleep
###Sleep for a specified number of seconds.
Syntax
status = sleep seconds ;
Arguments
- int seconds
The number of seconds to sleep.
Return Value
str status
- $ACKNOWLEDGE : The sleep function succeeded.
The STATUS variable is set to $ACKNOWLEDGE
- %BOUNDS : Invalid sleep seconds.
The STATUS variable is set to %BOUNDS
Warnings
- %BOUNDS : Invalid sleep seconds.
Exceptions
- %ARGUMENT: Invalid arguments. Usage: status = sleep seconds ;
Description
- None
Examples
puts "Create an example for the function 'sleep'" ;
Related Links
None