in reply to Re: YAML scalar ref strange behavior (JSON++)
in thread YAML scalar ref strange behavior
Which prints:my @arr; push @arr, { xx=>eval '\99' } for 1..2; say YAML::XS::Dump(\@arr);
--- - xx: !!perl/ref =: 99 - xx: !!perl/ref =: 99
which in place Loads fine, working around the problem.
|
|---|