Help for this page

Select Code to Download


  1. or download this
    my $min = $values[0];
    my $max = $values[0];
    ...
        $min = $value if $value < $min;
        $max = $value if $value > $max ;
    }
    
  2. or download this
    my $firstMatchline;
    
    ...
        $firstMatchline //= $.;
        ...
    }