The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#!/usr/bin/perl
use 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);