in reply to Converting an array of hashrefs into a hashref of arrays
where $ref is a reference to your data structure, in this case, a hash of arrays.use Data::Dumper; ...your code here ... print Dumper($ref);
It's included by default on at least perl 5.6 and above; maybe even earlier versions, so you shouldn't have to install it.
-- Burvil
|
|---|