Help for this page

Select Code to Download


  1. or download this
    #iterate
    while ( my $chunk = $reader->chunk )
    {
        print "$chunk\n****************\n";
    }
    
  2. or download this
    #iterate
    while ( $reader->chunk )
    {
        print "$_\n****************\n";
    }