Help for this page

Select Code to Download


  1. or download this
    while( countdown( $limit )->( my $x ) ) {
     # do something with $x
    }
    
  2. or download this
    my $it = countdown( $limit );
    while( $it->( my $x ) ) {
     # do something with $x
    }