Help for this page

Select Code to Download


  1. or download this
    say @AoA1; # ARRAY(0x606df0)ARRAY(0x621e70)
    
  2. or download this
    say @AoA2; # ARRAY(0x606df0)ARRAY(0x621e70)
    
  3. or download this
    use Clone 'clone';
    my @AoA3 = @{ clone( \@AoA1 ) };
    ...
    
    my @AoA5 = map { [ @$_ ] } @AoA1;
    say @AoA5; # ARRAY(0x67ff58)ARRAY(0x7e8468)