Mineplex/.FILES USED TO GET TO WHERE WE ARE PRESENTLY/xampp/perl/vendor/lib/DDP.pm
Daniel Waggner 76a7ae65df PUUUUUSH
2023-05-17 14:44:01 -07:00

33 lines
530 B
Perl

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 exactly like L<Data::Printer> - it is, indeed, just an alias to it :)
Happy debugging!
=head1 SEE ALSO
L<Data::Printer>