You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
use strict ; use warnings ; use v5.10 ;
use Array::Iterator::Circular;
my$chars = Array::Iterator::Circular->new('-', '-');
say$chars->next for (1 ..10 ) ;
$chars = Array::Iterator::Circular->new('-');
say$chars->next for (1 ..10 ) ;