Help for this page

Select Code to Download


  1. or download this
    my @records = (['2004','4','23','other part of recrods'],
     ['2002','2','12','some other stuff']);
    
  2. or download this
    @records = sort {$a->[0]<=>$b->[0] || $a->[1]<=>$b->[1]
    || $a->[2] <=> $b->[2]} @records;