Hi, if I have a multidimensional array like :
 
@AoA = (
                 ["ABC", "BCD"],
                 ["CDE", "DEF"],
                 ["EFG", "FGH"],
                 );
 
 
then do:
 
@var = splice @AoA, 2, 1;  # to delete the last row
 
print @var; #print what was returned from splice
 
 
 
The print statement prints an address.  I like it to print the contents
that was removed.  How do I do that?
 
~Sitha

Reply via email to