http://qs321.pair.com?node_id=11132273


in reply to Re^2: Data::Dumper output
in thread Data::Dumper output

It is therefore highly probable as everyone else has surmised that you have accidentally stringified $request at some point in the code you have not shown.

...

I was trying to print with:

print Dumper %$request . "\n";

Removing the concatenated return character gives...

...

To continue to use \n, use a list with print ...

# Need to use "Dumper()" else "\n" will be swallowed by "Dumper ... ;" + print Dumper( ... ), qq[\n];