Help for this page

Select Code to Download


  1. or download this
    my %b;
    create_hash_for_filename($filename,\%b);
    push @a, {%b};
    
  2. or download this
    sub create_hash_for_filename {
       my %b;
    ...
    }
    
    push @a, create_hash_for_filename($filename);
    
  3. or download this
    for my $i (0..9)