10 bar
=> [ 1, "mars", \
@ARGV ],
13 print "DDumper (\\%hash)\n";
16 print "\$str = DDump (%hash)\n";
17 my $str = DDump \
%hash;
19 print "\%hsh = DDump (%hash)\n";
20 my %hsh = DDump \
%hash;
23 print "DDump \\%hash\n";
26 print "\$str = DDump (%hash, 5)\n";
27 my $str = DDump
(\
%hash, 1);
29 print "\%hsh = DDump (%hash, 5)\n";
30 my %hsh = DDump
(\
%hash, 1);
33 print "DDump \\%hash, 5\n";