NAME
Chj::pp -- pretty printing as a debugging help
SYNOPSIS
use
Chj::pp;
pp (1/2) + 1,
"\n"
;
# prints "0.5\n" to stderr then "1.5\n" to stdout
pp_ (
"x"
, 1/2) + 1,
"\n"
;
# prints "x: 0.5\n" to stderr then see above
DESCRIPTION
NOTE
This is alpha software! Read the status section in the package README or on the website.