Help for this page

Select Code to Download


  1. or download this
    next if /^#/;
    
    ...
            $previous_data_ar,
            \%acty_for_callout_at_sub_loc )
        unless %acty_for_callout_at_sub_loc;
    
  2. or download this
    warn "B-Fruit:  '$_'\n"
        foreach grep { /^b/ } @fruits;
    
  3. or download this
    foreach ( grep {/^b/} @fruits ) {
        print LOGFILE "Found B-Fruit '$_'\n;
        warn "B-Fruit:  '$_'\n";
    }