PerlStore

Implemented simple Serialization form http://doc.perl6.org

perl-store

.perl serialization class and module

This module will work only for only simple situations. All data that is not visible after calling .perl method will be lost. This may be considered as limitation or feature.


    my Bar $bar .= new(a=> 128);
    my Foo $foo .= new(u=> 'Gore', bar => $bar);

    $foo.to_file('tt1.pl');
    my $tested = Foo.from_file('tt1.pl');

The Camelia image is copyright 2009 by Larry Wall. "Raku" is trademark of the Yet Another Society. All rights reserved.