-
-
Save hirose31/24d9b4bfde9118a3b36c7eb805b3de0a to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env perl | |
use strict; | |
use warnings; | |
use utf8; | |
use 5.010_000; | |
use Data::Dumper; | |
use JSON; | |
say $^V; | |
say $JSON::VERSION; | |
my $j = JSON->new; | |
say $j->backend; | |
my $text = "2013-12-04\n2013-07-26\n"; | |
my $r = $j->decode_prefix($text); | |
say Dumper($r); | |
say 'owari'; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment