Help for this page

Select Code to Download


  1. or download this
    my $fetch = sub {
        my ($fh) = @_;
    ...
    while ($next->(my $item)) {
        print "$item\n";
    }
    
  2. or download this
    my $fetch = sub {
        my ($fh) = @_;
    ...
    while (my $ref = $next->()) {  
        print "$$ref\n";
    }
    
  3. or download this
    my $fetch = sub {
        my ($fh) = @_;
    ...
    while (my ($item) = $next->()) {  
        print "$item\n";
    }