| Acme-PSON documentation | view source | Contained in the Acme-PSON distribution. |
Acme::PSON - PSON(PerlScript Object Notation) Module
use Acme::PSON qw(obj2pson pson2obj);
my $data = { x=> 'adfs' , y => 'adf' };
my $pson = obj2pson( $data );
my $obj = pson2obj( $pson );
Like JSON but use Dumper.
get pson data.
get hash_ref or array_ref.
Masahiro Funakoshi <masap@cpan.org>
Tomohiro Teranishi <tomohiro.teranishi@gmail.com>
Copyright 2008 Tomohiro Teranishi.
This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself. See perlartistic.
| Acme-PSON documentation | view source | Contained in the Acme-PSON distribution. |