xref: /openbsd-src/gnu/usr.bin/perl/dist/Attribute-Handlers/demo/demo_hashdir.pl (revision b39c515898423c8d899e35282f4b395f7cad3298)
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;
10