Help for this page

Select Code to Download


  1. or download this
    my $highest = pop sort { $a <=> $b } @list;
    
  2. or download this
    my $highest = pop @list;
    foreach (@list) {
        $highest = $_ if $_ > $highest;
    }