Re: Sleep apnea

2007-10-18 Thread [EMAIL PROTECTED]
On Oct 16, 2:09 pm, [EMAIL PROTECTED] (Jenda Krynicky) wrote: > use FileHandle; The FileHandle module exists largely for reasons of backward compatibility. New code should: use IO::Handle; or use IO::File; -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMA

Re: Sleep apnea

2007-10-16 Thread Jenda Krynicky
From: [EMAIL PROTECTED] > I would expect the following script: > > use strict; > use warnings; > print 8*8; > sleep 3; > print 7*7; > > To behave as follows. > > 1. print 64. > 2. pause 3 seconds. > 3. print 49. > > Instead the behavior is: > > 1. p

Re: Sleep apnea

2007-10-16 Thread Paul Lalli
On Oct 16, 6:11 am, [EMAIL PROTECTED] (Chas. Owens) wrote: > On 10/15/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > > > > I would expect the following script: > > > use strict; > > use warnings; > > print 8*8; > > sleep 3; > > print 7*7; > > > To behave as follows. >

Re: Sleep apnea

2007-10-16 Thread Chas. Owens
On 10/15/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > I would expect the following script: > > use strict; > use warnings; > print 8*8; > sleep 3; > print 7*7; > > To behave as follows. > > 1. print 64. > 2. pause 3 seconds. > 3. print 49. > > Instead t

RE: Sleep apnea

2007-10-16 Thread Andrew Curry
Try setting buffering off, its probably due to that as it should do a,b,c -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: 16 October 2007 02:50 To: beginners@perl.org Subject: Sleep apnea I would expect the following script: use strict; use

Sleep apnea

2007-10-16 Thread kevincniven
I would expect the following script: use strict; use warnings; print 8*8; sleep 3; print 7*7; To behave as follows. 1. print 64. 2. pause 3 seconds. 3. print 49. Instead the behavior is: 1. pause 3 seconds. 2. print 64. 3. print 49. Why i