Help for this page

Select Code to Download


  1. or download this
    >perl -le "print '123' <=> 'abc'"
    1
    
    >perl -le "print '123' cmp 'abc'"
    -1
    
  2. or download this
    my $orderby   = 'age';
    my $numerical = 1;
    ...
    }
    
    @sorted = sort { &$sorter } keys %hash;