Initial commit of OpenSPARC T2 design and verification files.
[OpenSPARC-T2-DV] / tools / perl-5.8.0 / lib / 5.8.0 / Attribute / Handlers / demo / demo_hashdir.pl
CommitLineData
86530b38
AT
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;