Help for this page

Select Code to Download


  1. or download this
    @stuff = ( 90, 5, 4 );
    
  2. or download this
    my $highest = 0;
    foreach my $element ( @numbers ) {
       $highest = $element if $element > $highest;
    }
    print $highest;