in reply to declaration of variables
The first and third line in your text have the same effect, and the second and fourth line have the same effect.my ($a, $b, $c) = (1, 2, 3);
my $a; my $b = ""; print "\$a is not defined\n" unless defined $a; print "\$b is defined\n" if defined $b;
|
|---|