The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Chj::pp -- pretty printing as a debugging help

SYNOPSIS

 use Chj::pp;

 print pp (1/2) + 1, "\n"; # prints "0.5\n" to stderr then "1.5\n" to stdout

 print pp_ ("x", 1/2) + 1, "\n"; # prints "x: 0.5\n" to stderr then see above

DESCRIPTION