Help for this page

Select Code to Download


  1. or download this
    my @x = f();
    my @y = @x;
    
  2. or download this
      DB<39> sub f { 1..3}
    
      DB<40> my @y = my @x = f(); print"@x,@y"
    1 2 3,1 2 3
      DB<41>