Help for this page

Select Code to Download


  1. or download this
    @sorted = sort {
      unless ($a->{'name'} cmp $b->{'name'}) {
        $a->{age} <=> $b->{age}
      }
    } @data;
    
  2. or download this
    jim 18
    bob 24
    bob 14
    cathy 98
    cathy 45
    
  3. or download this
    bob 14
    bob 24
    cathy 45
    cathy 98
    jim 18