- or download this
use strict;
use warnings;
...
open my $fh, '>', 'data_out.json';
print $fh encode_json($json); #this line is in error
close $fh;
- or download this
use strict;
use warnings;
...
open my $fh, '>', 'data_out.json';
print $fh encode_json($json); #this line is in error
close $fh;