Help for this page

Select Code to Download


  1. or download this
    for ( @some_array ) {
        if ( $_ eq 'foo' ) {
    ...
        }
        handle_rest($_);
    }
    
  2. or download this
    for ( @some_array ) { ... }
    # to
    my $index = -1;
    while ( ++$index <= $#some_array ) { ... }
    
  3. or download this
    my $flag;
    my $index = -1;
    ...
        handle_rest($_);
    }