Help for this page

Select Code to Download


  1. or download this
    
    my @Array = (
    ...
        $a->[0] <=> $b->[0] or $b->[1] <=> $a->[1]
    } @Array;
    
  2. or download this
    
    foreach @Elements (@Array) { 
       print @Elements[0]."x".@Elements[1];
    }