Help for this page

Select Code to Download


  1. or download this
    my @x = ("1");
    my @y = ("1");
    ...
    (@x, @y, @z) = ();
    print "After: @x, @y, @z\n";
    
  2. or download this
    Before: 1, 1, 1
    After: , ,