Move Attribute::Handlers from lib to ext. The layout in ext is the same as the
[p5sagit/p5-mst-13.2.git] / ext / Attribute-Handlers / demo / demo_hashdir.pl
CommitLineData
0e9b9e0c 1use Attribute::Handlers autotie => { Dir => 'Tie::Dir qw(DIR_UNLINK)' };
2
3my %dot : Dir('.', DIR_UNLINK);
4
5print join "\n", keys %dot;
6
7delete $dot{killme};
8
9print join "\n", keys %dot;