| Current Path : /proc/thread-self/root/usr/share/doc/perl-JSON-Parse/examples/ |
| Current File : //proc/thread-self/root/usr/share/doc/perl-JSON-Parse/examples/synopsis.pl |
#!/usr/bin/perl use warnings; use strict; use JSON::Parse 'parse_json'; my $json = '["golden", "fleece"]'; my $perl = parse_json ($json); # Same effect as $perl = ['golden', 'fleece'];