in reply to RE: RE: RE: RE: Making a Hash of Arrays
in thread Making a Hash of Arrays
If you just need to know what's in the hash, use Data::Dumper. It does a great job of expanding references and can be made to do all sorts of pretty printing.
You can also use that to print your arrays and such.use Data::Dumper; print Data::Dumper->Dump([\%yourhash], ["name of your hash"]), "\n";
|
|---|