< Perl Programming < Keywords

The sleep keyword

sleep makes the process sleep for the number of seconds passed by the EXPRESSION seconds (integer).

It's not a good idea to mix alarm and sleep calls, as sleep is often implemented using alarm.

Syntax

  sleep EXPRESSION

Examples

The code
print "Hello " . time . "\n";
sleep 5;
print "World! " . time . "\n";
returns the two strings with a leap of about 5 s:
Hello 1424262965
World! 1424262970

See also

This article is issued from Wikibooks. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.