Help for this page

Select Code to Download


  1. or download this
    my $it = tqdm(100);
    while (my $i = $it->next) {
        ...
    }
    
  2. or download this
    use warnings;
    use strict;
    ...
        my $it2 = Iterator->new(-5..5);
        is_deeply [<$it2>], [-5,-4,-3,-2,-1,0,1,2,3,4,5];
    }