Sponsoring The Perl Toolchain Summit 2025: Help make this important event another success Learn more
123456789101112 #!/usr/bin/perluse strict;use warnings;use JSON::SL qw(decode_json);use Data::Dumper;use File::Slurp;print STDERR "Using version ${JSON::SL::VERSION}\n";my $buf = read_file($ARGV[0]);print Dumper decode_json($buf);
#!/usr/bin/perl
use
strict;
warnings;
JSON::SL
qw(decode_json)
;
Data::Dumper;
File::Slurp;
print
STDERR
"Using version ${JSON::SL::VERSION}\n"
my
$buf
= read_file(
$ARGV
[0]);
Dumper decode_json(
);