Sleep
From codeTank
Contents |
Description
sleep will pause execution for a certain amount of seconds.
Arguments
sh: highlight: command not found
You need to specify a language like this: <source lang="html">...</source>
Supported languages for syntax highlighting:
(error loading support language list)sleep has one argument, specifying the duration in seconds. If the argument is omitted, then the default behavior is to sleep for 0 seconds, which creates the smallest pause possible. sleep internally uses milliseconds, so the second smallest pause possible would be sleep(0.001). Anything smaller is the same as sleep(0).
Returns
sleep does not return anything.
Example
sh: highlight: command not found
You need to specify a language like this: <source lang="html">...</source>
Supported languages for syntax highlighting:
(error loading support language list)
