Re: Perl 5.8 problems with print

2003-12-20 Thread $Bill Luebkert
Tobias Hoellrich wrote: >>-Original Message- >>Subject: Perl 5.8 problems with print >> >>code >> >>print "Processing Data "; Wouldn't hurt to add a newline at the end of the line either. >>while () {}; >>print "F

Re: Perl 5.8 problems with print

2003-12-20 Thread Randy W. Sims
On 12/20/2003 8:52 AM, Ken Brown wrote: code print "Processing Data "; while () {}; print "Finished\n"; Question why do I not see any output until I send "Finished\n" when running the .pl or the perlapp equiv but if I call with -d (PDK) it works perfectly? Try turning on output autoflushing: $|++

RE: Perl 5.8 problems with print

2003-12-20 Thread Tobias Hoellrich
> -Original Message- > Subject: Perl 5.8 problems with print > > code > > print "Processing Data "; > while () {}; > print "Finished\n"; > > Question > why do I not see any output until I send "Finished\n" when > runn

Perl 5.8 problems with print

2003-12-20 Thread Ken Brown
code print "Processing Data "; while () {}; print "Finished\n"; Question why do I not see any output until I send "Finished\n" when running the .pl or the perlapp equiv but if I call with -d (PDK) it works perfectly? Ken ___ Perl-Win32-Users mailing li