Help for this page

Select Code to Download


  1. or download this
      if ($type) {
        croak "$type is not supported" if !exists $sorts{$type};
    ...
        my $random_sort = (keys %sorts)[rand (keys %sorts)];
        return $sorts{$random_sort}->($a,$b);
      }
    
  2. or download this
      if ($type) {
        croak "$type is not supported" if !exists $sorts{$type};
    ...
      else {
        die "A sort type was not selected.";
      }