http://www.perlmonks.org?node_id=122219


in reply to Re: A little help please
in thread What is a multidimensional array and how do I use one

What was the intent of the following?
foreach $replica (@scr || @erlh) {

Did you perhaps want:
foreach $replica (@scr, @erlh) {

thus, stepping through each array?


HTH,
Charles K. Clarkson