Help for this page

Select Code to Download


  1. or download this
    my $array_ref = pop @myArrofArray;
    print "@$array_ref\n";  #dereference the reference
    push @a, @$array_ref;
    print "@a\n";  #now @a contains the entire row of values