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


in reply to Re: merging two hashes
in thread merging two hashes

That is an obsolete loop, jZed. Rather than: push @a, $_ for @b; I would write: push @a, @b;