Server : Apache/2.4.43 (Win64) OpenSSL/1.1.1g PHP/7.4.6
System : Windows NT USER-PC 6.1 build 7601 (Windows 7 Professional Edition Service Pack 1) AMD64
User : User ( 0)
PHP Version : 7.4.6
Disable Function : NONE
Directory :  C:/xampp/perl/vendor/lib/
Upload File :
Current Directory [ Writeable ] Root Directory [ Writeable ]


Current File : C:/xampp/perl/vendor/lib/DDP.pm
package DDP;
use strict;
use warnings;
use Data::Printer;

BEGIN {
    push our @ISA, 'Data::Printer';
    our $VERSION = $Data::Printer::VERSION;
}
1;
__END__

=head1 NAME

DDP - Data::Printer shortcut for faster debugging

=head1 SYNOPSIS

  use DDP; p $my_data;

=head1 DESCRIPTION

Tired of typing C<use Data::Printer> every time? C<DDP> lets you quickly call
your favorite variable dumper!

It behaves exacly like L<Data::Printer> - it is, indeed, just an alias to it :)

Happy debugging!

=head1 SEE ALSO

L<Data::Printer>