The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
use Test::More;

use Safe;

BEGIN { Safe->new }

use JSONY;

my $data = JSONY->new->load( "[ 1 2 3 4 ]" );

pass 'GitHub issue #2 fixed';

done_testing;