Sophie

Sophie

distrib > Fedora > 14 > x86_64 > by-pkgid > 991fbb3224d9dbdfe135f4935545feb5 > files > 6

perl-Wx-Perl-ProcessStream-0.27-1.fc14.noarch.rpm

use strict;
my $counter = 0;

# NO BUFFERING
$| = 1;

# do work
while( $counter < 10 ) {
    print qq(Process $$ continues $counter\n);
    $counter++;
    sleep 3;
}