Help for this page

Select Code to Download


  1. or download this
    # Listing One:
    %hash = (
    ...
                }
       "789" => "abc"
    );
    
  2. or download this
    # Listing Two:
    %hash = (
    ...
                },
       "789" => {"abc" => "xxx"}
    );
    
  3. or download this
    use strict;
    use warnings;
    ...
                
    # Final results:
    pp \%hash;