Help for this page
@blah = sort {$a cmp $b} @_;
@blah = sort {$a <=> $b} @_;
@blah = sort {$a cmp $b || $a <=> $b} @foo;