- or download this
my $JSON = JSON->new->utf8;
$JSON->convert_blessed(1);
...
$JSON->pretty(1);
my $json = $JSON->encode(\%arr_hash);
print "JSON [\n $json\n ]\n";
- or download this
JSON [
{
...
null
]
}
- or download this
my $json = $JSON->encode(\@ace_context);
- or download this
print Dumper(\%arr_hash);