Help for this page

Select Code to Download


  1. or download this
    my $tp = grep { $myhash{ $_ } } @pred;
    
  2. or download this
    my $tp = 0;
    for ( @pred ) {
    ...
            last;
        }
    }
    
  3. or download this
    my $tp = 0;
    for ( @pred ) {
        last if $tp = $myhash{ $_ };
    }