Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
        print $_ . "\n" && next if /no_proc/; #no processing
        print "$_ : in proc \n";              #processing
    }
    
  2. or download this
        print ($_ . "\n") && next if /no_proc/;
    
  3. or download this
    print (...) interpreted as function at ...
    
  4. or download this
        if (/no_proc/){
            print $_ . "\n";
            next;
        }