in reply to Re^2: Perl credited with changing the rules
in thread Perl credited with changing the rules

The advantage of having a -n option to sort meant that sort users had an optimized numerical sort from the start. It took Perl more than ten years to optimize the common {$a <=> $b} such that one doesn't need to enter/leave a scope for each comparison.

Oh, and -n types a lot faster than {$a <=> $b}.