Skip to content

Instantly share code, notes, and snippets.

@lattenwald
Last active August 16, 2016 08:36
Show Gist options
  • Save lattenwald/17a2220138c7496fed017739362e89c4 to your computer and use it in GitHub Desktop.
Save lattenwald/17a2220138c7496fed017739362e89c4 to your computer and use it in GitHub Desktop.
perl Data::Dumper human-readable pretty-printing
use Data::Dumper;
$Data::Dumper::Useqq = 1;
{
no warnings 'redefine';
sub Data::Dumper::qquote { return qq("$_[0]"); };
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment