I am currently learning Perl. I have Perl hash that contains references to hashes and arrays. The hashes and arrays may in turn contain references to other hashes/arrays. >
maybe Data::Dumper is what you want:
use Data::Dumper; $str = Dumper($foo); print($str);