NAME
Data::Scan::Printer - Data::Scan::Printer - Example of a printer consumer for Data::Scan
VERSION
version 0.002
SYNOPSIS
use strict;
use warnings FATAL => 'all';
use Data::Scan::Printer;
my $this = bless([ 'var1', 'var2', {'a' => 'b', 'c' => 'd'}, \undef, \\undef, [] ], 'TEST');
dspp($this);
DESCRIPTION
Data::Scan::Printer is polluting user's namespace with a dspp() method, showing our Data::Scan can be used to dump an arbitrary structure.
SUBROUTINES/METHODS
dspp(@arguments)
Print to STDOUT a dumped vision of the arguments.
SEE ALSO
AUTHOR
Jean-Damien Durand <jeandamiendurand@free.fr>
COPYRIGHT AND LICENSE
This software is copyright (c) 2016 by Jean-Damien Durand.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.