Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    use warnings;
    ...
                               'DomainE'
                             ]
            };
    
  2. or download this
    for my $key (keys %h){
        for my $elem (@{ %h{$key} }){
            print "$key: $elem\n";
        }
    }