in reply to Re: Sleeping with the Enemy
in thread Sleeping with the Enemy

From perldoc -f select:
You can effect a sleep of 250 milliseconds this way: select(undef, undef, undef, 0.25);
While sleep() is usually good enough, select() comes in handy sometimes.