my $largest_odd; for (@ARGV) { $largest_odd = $_ if $_ % 2 && $_ > $largest_odd; } print $largest_odd ? $largest_odd : 'nothing odd', $/;