Help for this page

Select Code to Download


  1. or download this
    #!/usr/local/bin/perl
    use strict;
    use warnings;
    my $a = [1, 2, 5, 7, 4];
    print sort { $a <=> $b } @$a;
    
  2. or download this
    Can't use "my $a" in sort comparison at /home/code/perl/arrayprob.pl l
    +ine 5.
    
  3. or download this
    my $ab = [1,2,5,7,4];
    print sort { $a <=> $b } @$ab;