in reply to Re: 99 Problems in Perl6
in thread 99 Problems in Perl6

What Ovid said. There's also a .yaml method that does the YAML::Syck::Dump equivalent. The round trip is also analogous:

eval $obj.perl; eval $obj.yaml :lang<yaml>; # though this syntax is unspecced and +may change.