Next Program Repair Shop 54

FindLastOut

        next if $File !~ /^\d{5}/;
        my $n = substr($File, 0, 5);
        if ($n > $Highest) {
           $Highest = $n;
        }
        next if $File !~ /^(\d{5,})/;
        if ($1 > $Highest) {
           $Highest = $1;
        }
        $Highest = $1 if $1 > $Highest;
        # or
        $Highest = ($1 > $Highest) ? $1 : $Highest;


Next Copyright © 2002 M. J. Dominus