- or download this
#do{$data = $data . $_ } while (<DATA>); #gives a uninitialized value
+in concatenation
- or download this
my $data;
while (<DATA>) { $data .= $_ }
- or download this
$ perl -we 'my $foo; $foo = $foo . "foo"' # no warning
- or download this
$ perl -we 'my $foo; my $bar = $foo . "foo"'
Use of uninitialized value $foo in concatenation (.) or string at -e l
+ine 1.