Upgrade to Attribute::Handlers 0.70.
[p5sagit/p5-mst-13.2.git] / lib / Attribute / Handlers / demo / demo_hashdir.pl
CommitLineData
04070b92 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};