Help for this page
my $c = 2; my @a = ("$c", $c+=1); print "@a";
my $c = 2; my @a = ($c, $c+=1); print "@a";
my ($a, $b) = (shift, shift)