Help for this page
my @x = ("1"); my @y = ("1"); ... (@x, @y, @z) = (); print "After: @x, @y, @z\n";
Before: 1, 1, 1 After: , ,