Help for this page

Select Code to Download


  1. or download this
        if(@{$list})
        {
    ...
               if($Found) { return $Found; }
            }
        }
    
  2. or download this
    my $result = 1;
    for my $i ( 0 .. $#vals ) 
    ...
        $result &&= foo( $vals[$i], $arr[$i] );
    }
    if ( $result ) { ..