Help for this page

Select Code to Download


  1. or download this
    my $x = 0;
    foreach $y (@lots_of_values){
       $x = $y if $y > $x;
    }
    return $x;
    
  2. or download this
    my $x = 0;
    foreach $y (@lots_of_values){
       $x = [ $x => $y ] -> [ $x <= $y ];
    }
    return $x;