Code:
#!/usr/local/bin/perl
#@food = ("apples", "pears", "eels");
#$l=push(@food, "eggs", "lard");
#($a, $b) = @food;
#$f = "@food";
#print $b;
($a, $b) = ($c, $d);
print $a;
it prints nothing . $c,$d has no value. then why they did not throws exception while attempting print null values