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
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
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.
>
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
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
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