summaryrefslogtreecommitdiffstats
path: root/lib/App/REPL/Plugin/DataDumper.pm
blob: 34e520d2553a33335f31b1634f4e90c794d5c50a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package App::REPL::Plugin::DataDumper;
use strict;
use warnings;

use base 'App::REPL::Plugin';

use Data::Dumper;

sub mangle_result {
    my $self = shift;
    my (@result) = @_;
    return Dumper(@result);
}

1;