Help for this page

Select Code to Download


  1. or download this
    my @out = sort(do_nothing(@in));
    
  2. or download this
    sub do_nothing { wantarray ? @_ : -1 }
    
  3. or download this
    sub do_nothing { wantarray ? @_ : ($b cmp $a) }
    
  4. or download this
    my @out = sort &do_nothing(@in);