in reply to Re: Using $a and $b for sort
in thread Using $a and $b for sort

Thanks for the response, That makes sense... I did that, but what in case if you want to change these default variables??? Any clue???

Replies are listed 'Best First'.
Re^3: Using $a and $b for sort
by mreece (Friar) on Jan 04, 2008 at 04:11 UTC
    if there is some strange reason you cannot lexify your other usages of $a and $b, then you can consider using a named ($$)-prototyped sort subroutine, and perl will pass the sort variables in @_ instead of package variables.
    sub mysort ($$) { $_[0]->{key} <=> $_[1]->{key} } my @sorted = sort mysort @unsorted;