SYNOPSIS

     use DDD $your_data, $another, ...;

DESCRIPTION

    DDD is basically just a shortcut for:

     use Data::Dump; dd ...

    except that it's shorter and you don't have to import anything.

    It aids in print-based debugging session. You don't have to add a
    separate use statement. The drawback is that it's executed in
    compile-time phase and thus are useless in a lot of cases.

SEE ALSO

    XXX, Data::Dump

