Howdy list! I was wondering...(imagine that!) If I have in my script:
#!/usr/bin/perl -w
use strict;
use ModuleWhatever;
And ModuleWhatever has:
package ModuleWhatever;
$|++;
Would that turn on autoflush for the rest of the script?
IE is the above example the same as doing :
#!/usr/bin/perl -w
use strict;
$|++;
Then there's always the: Do I use $|++; or $|=1;
TIA
Dan
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
