Help for this page

Select Code to Download


  1. or download this
    my $iter = TQDM::tqdm(1..10);
    
    while (<$iter>) {
        print "got [$_]\n";
    }
    
  2. or download this
    sub iterate ($&) {
        my ($ary, $code) = @_;
    ...
    iterate tqdm(1..10), sub {
        print "got [$_]\n";
    };