- or download this
use strict;
use warnings;
...
print "Dumpvalue:\n";
Dumpvalue->new->dumpValue( $ref );
- or download this
Dumpvalue:
'a' => ARRAY(0x460ee8)
...
1 8
2 9
- or download this
use strict;
use warnings;
...
print "Data::Dumper:\n";
print Dumper( $ref );
- or download this
Data::Dumper:
$VAR1 = {
...
]
};
- or download this
use strict;
use warnings;
...
print "YAML::Dump:\n";
print Dump( $ref );
- or download this
YAML::Dump:
---
...
- 8
- 9
- or download this
use strict;
use warnings;
...
print "Data::Dump::Streamer:\n";
print Dump( $ref );
- or download this
Data::Dump::Streamer:
$HASH1 = {
...
]
};
- or download this
use strict;
use warnings;
...
GraphViz::Data::Structure->new( $data_structure, Orientation => 'ver
+tical' );
print $gvds->graph()->as_png("gvds.png");
- or download this
use strict;
use warnings;
...
my $graph = GraphViz::Data::Grapher->new($structure);
print $graph->as_png("gvdg.png");