Help for this page

Select Code to Download


  1. or download this
    my @data;
    for my $file (qw(this.txt that.txt)) {
    ...
        push @{$data[-1]}, $_ if /\n\z/ && ! /^>/;
      }
    }
    
  2. or download this
    @data = read_files( qw(this.txt that.txt) );
    
    ...
      }
      return @data;
    }