Help for this page

Select Code to Download


  1. or download this
      my( $fname, $lname, $grades ) = /^(.*?) (\S*?) ([ 0-9]*)$/;
    
  2. or download this
    for (
      sort { $a->[1] cmp $b->[1] or $a->[0] cmp $b->[0] } 
    ...
    ) {
      print "@$_\n";
    }