print $array[-1]; my $last; for ( @array ) { $last = $_ }; print $last; my $big = -999999999; while() { chomp; $big = $_ if $_ > $big }; print $big;