Cool Perl 6: Hash sort by value
Explanation: Start with the long form
sub value_cmp -> $a, $b { $a.value cmp $b.value }; %scores.sort( &value_cmp );
Each Pair in %scores is passed to &value_cmp
We can avoid the named sub
%scores.sort( -> $a, $b { $a.value cmp $b.value } );continued...