in reply to Re: Re: Beginning to see the light....
in thread Beginning to see the light....

Not at all. When using debug prints, I use map and join with equal frequency (depending on my mood and probably depending on surrounding code).

Also note that I am using the return values of map in my print statement. I wrote print map("$_\n",@test);. If I had written map(print("$_\n"),@test); that would've been map in void context.