Special package variables when usingsort()
, see"sort" in perlfunc. Because of this specialness$a
and$b
don't need to be declared (usinguse vars
, orour()
) even when using thestrict 'vars'
pragma. Don't lexicalize them withmy $a
ormy $b
if you want to be able to use them in thesort()
comparison block or function.
Perldoc Browser is maintained by Dan Book (DBOOK). Please contact him via theGitHub issue tracker oremail regarding any issues with the site itself, search, or rendering of documentation.
The Perl documentation is maintained by the Perl 5 Porters in the development of Perl. Please contact them via thePerl issue tracker, themailing list, orIRC to report any issues with the contents or format of the documentation.