Help for this page

Select Code to Download


  1. or download this
    my $max = pop @{[ sort { $a <=> $b } @vals ]};
    
  2. or download this
    my $max = $vals[0];
    $max = ( $_ > $max ) ? $_ : $max foreach @vals;