I just upgraded to 5.8. One thing I noticed is that it treats line prints differently. For example:

while ($x < 10) {
for ($y=1;$y<11;$y++) {
 print ".";
 sleep 1;
}
print "\n"
$x++;
}

This prints a line of ".........." once every 10 seconds. In 5.6 and prior it would print a "." every second.

I'm guessing there's an easy way to change this behaviour.  Any hints?

Thx!
Paul ---


_______________________________________________ Perl-Win32-Users mailing list Perl-Win32-Users@listserv.ActiveState.com To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs

Reply via email to