1Devel::REPL::Plugin::DDUSs(e3r)Contributed Perl DocumentDaetvieoln::REPL::Plugin::DDS(3)
2
3
4
6 Devel::REPL::Plugin::DDS - Format results with Data::Dump::Streamer
7
9 version 1.003028
10
12 # in your re.pl file:
13 use Devel::REPL;
14 my $repl = Devel::REPL->new;
15 $repl->load_plugin('DDS');
16 $repl->run;
17
18 # after you run re.pl:
19 $ map $_*2, ( 1,2,3 )
20 $ARRAY1 = [
21 2,
22 4,
23 6
24 ];
25
26 $
27
29 Bugs may be submitted through the RT bug tracker
30 <https://rt.cpan.org/Public/Dist/Display.html?Name=Devel-REPL> (or
31 bug-Devel-REPL@rt.cpan.org <mailto:bug-Devel-REPL@rt.cpan.org>).
32
33 There is also an irc channel available for users of this distribution,
34 at "#devel" on "irc.perl.org" <irc://irc.perl.org/#devel-repl>.
35
37 Matt S Trout - mst (at) shadowcatsystems.co.uk
38 (<http://www.shadowcatsystems.co.uk/>)
39
41 This software is copyright (c) 2007 by Matt S Trout - mst (at)
42 shadowcatsystems.co.uk (<http://www.shadowcatsystems.co.uk/>).
43
44 This is free software; you can redistribute it and/or modify it under
45 the same terms as the Perl 5 programming language system itself.
46
47
48
49perl v5.32.0 2020-07-28 Devel::REPL::Plugin::DDS(3)