Help for this page

Select Code to Download


  1. or download this
    use warnings;
    use strict;
    ...
    my@sorted = sort {$a cmp $b} @array;
    
    print "The sorted array contains @sorted \n";