in reply to Re: Re: Stable sorting in Perl
in thread Stable sorting in Perl

There is a subtle difference between:
perldoc sort
and
perldoc -f sort
The former gives you the documentation of the sort pragma, whereas the latter gives you the documentation of the sort function. But indeed, you appear to need at least 5.8.0 for the sort pragma.

Liz

Replies are listed 'Best First'.
Re: Re: Re: Re: Stable sorting in Perl
by sweetblood (Prior) on Aug 28, 2003 at 16:45 UTC
    Ahhh... When I do perldoc sort I get "No documentation for sort..." So only perldoc -f sort gives me anything. I think you're right, I must need 5.8.0 or better for the sort pragma. Thanks!