Help for this page

Select Code to Download


  1. or download this
    my $max = $numbers[0];
    for (@numbers) {
       $max = $_ if $_ > $max;
    }