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

Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:

Hi,
With this simple code:
perl -MData::Dumper -e '@arr = qw (a b c); print Dumper \@arr'

Is there a way to print the resulf of Data::Dumper in horizontal way? Like this:
$VAR1 = ['a','b','c'];
instead of
$VAR1 = [ 'a', 'b', 'c' ];
Since it makes life easier to compare the result. I hope this is a reasonable question. Thanks