Help for this page

Select Code to Download


  1. or download this
    12:36 >perl -Mstrict -wE "my @array = ('c', 'bb', 'aaa'); say for sort
    + @array;"
    aaa
    ...
    c
    
    12:37 >
    
  2. or download this
    12:37 >perl -Mstrict -wE "my @array = ('3', '22', '111'); say for sort
    + @array;"
    111
    ...
    3
    
    12:39 >
    
  3. or download this
    12:39 >perl -Mstrict -wE "my @array = ('3', '22', '111'); say for sort
    + { $a <=> $b } @array;"
    3
    ...
    111
    
    12:43 >