Help for this page

Select Code to Download


  1. or download this
    use Data::Dumper;
    
    ...
    ];
     
    print Dumper $customers;
    
  2. or download this
    print $customer->[8]->{current}->[0];
    
  3. or download this
    my @sorted = sort {
       $a->{current}->[0] <=> $b->{current}->[0]
    } @$customer;
    
    print Dumper \@sorted;