Help for this page

Select Code to Download


  1. or download this
    my $whatever = 1;
    while( $whatever ){
        for my $ix ( 1 .. 4 ){
            ...
        }
    }
    
  2. or download this
    sub make_rollover {
        my( $completion_list ) = @_;
    ...
    while ( my $next = $rollover->() ){
        ...
    }