- or download this
use warnings;
use strict;
...
open my $fh, '>', 'data.json' or die $!;
print $fh $json;
- or download this
{"second_hash":{"work":"office","family":"home"},"first_hash":{"Vegeta
+ble":"tomato","fruit":"banana"}}
- or download this
use warnings;
use strict;
...
my $data = decode_json $json;
print Dumper $data->{$want};
- or download this
$ perl fetch_hash.pl first_hash
...
'work' => 'office',
'family' => 'home'
};