Upgrade to Attribute::Handlers 0.70.
[p5sagit/p5-mst-13.2.git] / lib / Attribute / Handlers / demo / demo_cycle.pl
CommitLineData
04070b92 1use Attribute::Handlers autotie => { Cycle => Tie::Cycle };
2
3my $next : Cycle(['A'..'Z']);
4
5print tied $next, "\n";
6
7while (<>) {
8 print $next, "\n";
9}