Help for this page

Select Code to Download


  1. or download this
    use warnings;
    use strict;
    ...
    for (glob '*') {
        push @{ $data{$_} }, read_file($_);
    }
    
  2. or download this
    my @data;
    for (glob '*') {
        push @data, [ read_file($_) ];
    }