Help for this page

Select Code to Download


  1. 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;
    
  2. 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;