Help for this page

Select Code to Download


  1. or download this
    %HoA = (
        part1     => [
    ...
           'Duffy'
       ]
    );
    
  2. or download this
    sub sort_keys_ascending{
      sort keys %HoA
    }
    
  3. or download this
    my $href = \%HoA;
    sub sort_typeparm_ascending{
    ...
          }
          keys %data
    }
    
  4. or download this
    sub sort_typeparm_descending{
      sort{
    ...
          }
          keys %data;
    }