Help for this page

Select Code to Download


  1. or download this
    sub property {  return $_[ 0 ]->{ name } }
    @sorted =
    ...
      sort { $a->[ 1 ] cmp $b->[ 1 ] }
      map  { [ $_, property( $_ ) ] }
      @people;
    
  2. or download this
    sub by_name { $a->{ name } cmp $b->{ name } }