- or download this
my $rec_reader = make_rec_reader('myrecordsep');
while (my $rec = $rec_reader->($fh)) {
...
print "$_\n" for @$rec;
print("\n");
}
- or download this
sub make_rec_reader {
my ($sep) = @_;
...
}
};
}
- or download this
my $sep = 'myrecordsep';
...
process_rec(\@rec);
}
}