Help for this page

Select Code to Download


  1. or download this
    Can't use "my $a" in sort comparison at pmonks06082015.pl line 4.
    
  2. or download this
    $a
    $b
    Special package variables when using sort(), see sort. Because of this
    + specialness $a and $b don't need to be declared (using use vars , or
    + our()) even when using the strict 'vars' pragma. Don't lexicalize th
    +em with my $a or my $b if you want to be able to use them in the sort
    +() comparison block or function.