Help for this page

Select Code to Download


  1. or download this
    foreach my $aref ( \@array1, \@array2, ... \@arrayn ) {...
    
  2. or download this
    use File::Slurp 'read_file';
    my @raw_files;
    foreach my $filename ( @filenames ) {
      push @raw_files, scalar read_file( $filename, chomp => 1 );
    }