in reply to Re: Serialization and eval in YAMLin thread Serialization and eval in YAML
use Data::Dumper; print Data::Dumper->Dump( [{a => 1, b =>2}], [qw($balloon)] ); __END__ $balloon = { 'a' => 1, 'b' => 2 }; [download]