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