Help for this page

Select Code to Download


  1. or download this
    foreach my $key ( keys %hash ) { 
      while ( my ( $subkey, $value ) = each %{ $hash{$key} } ) { 
    ...
      }
      delete $hash{ $key };
    }
    
  2. or download this
    #!/usr/bin/perl
    use strict;
    ...
    say Dumper \%hash;
    
    __END__
    
  3. or download this
    $VAR1 = {
              'keyA' => {
    ...
                        }
            };