##
while (my $row = <$fh2>) {
####
$ cat t.pl
use strict;
use warnings;
# Scalar context
my $row = ;
print $row;
# Array context
my ($a) = ;
print $a;
# Now there's nothing left!
my $c = ;
print $c;
__DATA__
Now is the time
for all good men
to come to the aid
of their party
$ perl t.pl
Now is the time
for all good men
Use of uninitialized value $c in print at t.pl line 14, line 5.