Help for this page

Select Code to Download


  1. or download this
    use Resource;
    
    my $dbh = resource(isa => 'DBI');
    ...
    
  2. or download this
    
    my $in = resource(isa => 'ArrayReader');
    my $out = resource(isa => 'ArrayWriter');
    
    while ($_ = $in->next) { $out->write($_) }