Fry::Dump::DataDumper - Dump plugin for Fry::Shell which uses Data::Dumper.


Fry-Shell documentation Contained in the Fry-Shell distribution.

Index


Code Index:

NAME

Top

Fry::Dump::DataDumper - Dump plugin for Fry::Shell which uses Data::Dumper.

AUTHOR

Top

Me. Gabriel that is. I welcome feedback and bug reports to cldwalker AT chwhat DOT com . If you like using perl,linux,vim and databases to make your life easier (not lazier ;) check out my website at www.chwhat.com.

COPYRIGHT & LICENSE

Top


Fry-Shell documentation Contained in the Fry-Shell distribution.

package Fry::Dump::DataDumper;
use strict;
use Data::Dumper;
sub setup {}
$Data::Dumper::Indent = 0;
#$Data::Dumper::Purity = 1;
sub dump { my $class = shift; Dumper(@_) }
1;

__END__