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

NAME

Acme::PSON - PSON(PerlScript Object Notation) Module

SYNOPSIS

 use Acme::PSON qw(obj2pson pson2obj);

 my $data = { x=> 'adfs' , y => 'adf' };

 my $pson = obj2pson( $data );

 my $obj  = pson2obj( $pson );

DESCRIPTION

Like JSON but use Dumper.

METHOD

obj2pson( $object )

get pson data.

pson2obj( $pson )

get hash_ref or array_ref.

AUTHOR

Masahiro Funakoshi <masap@cpan.org>

Tomohiro Teranishi <tomohiro.teranishi@gmail.com>

COPYRIGHT AND LICENSE

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.