...
Code Block | ||||
---|---|---|---|---|
| ||||
use LoxBerry::JSON; my $jsonparser = LoxBerry::JSON->new(); my $config = $jsonparser->open(filename => "/tmp/somefile.json"); foreach my $key (keys %$config) { print "The Keykey is: " . $key . "\n"; print "The value is: " . $config->{$key} . "\n"; } |
...