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}.
Comment on Re^3: Perl credited with changing the rules