in reply to Stream Dumper
somefile then contains:use Data::Dump::Streamer; use Fatal qw/open/; open my $fh, '>', 'somefile'; my $x = {cat => [qw/man du/]}; Dump($x)->To($fh)->Out();
Updated example to include intialisation of $x and output.$HASH1 = { cat => [ 'man', 'du' ] };
|
|---|