Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
        
        print "$_ => $subHash{$_}\n" for keys %subHash;
    }
    
  2. or download this
    c => 3
    a => 1
    b => 2
    
  3. or download this
    ...
    printHash (\%hash);
    ...
        
        print "$_ => $subHash->{$_}\n" for keys %$subHash;
    }