YAML Local Tags in Perl
- So called local tags are always loaded into objects with YAML::XS and YAML::Syck
- A local tag starts with one "!"
---- !Dice [3, 6]- !nonsense...classname [foo]
$VAR1 = [
bless( [
3,
6
], 'Dice' ),
bless( [
'foo'
], 'nonsense...classname' )
];