in reply to Re^2: Understanding variable scope in perl
in thread Understanding variable scope in perl
The answer to your questions are yes and yes. Just before I push values from my '@protein_matrix' to my '@next_cell_arr' matrix, I have debug code that shows all the values of my '@protein_matrix', becaue I did some computations in it before hand.
When I didn't have the '|| die' code in there, perl threw errors stating that I'm trying to use uninitialized values.