Help for this page

Select Code to Download


  1. or download this
    open (MY_DATA, "$someFile") or die qq(aauugh!);
    
    ...
        next unless (/^need this/);
        <do something>
    }
    
  2. or download this
    open (MY_DATA, "$someFile") or die qq(aauugh!);
    
    ...
        next unless (/^need this/);
        <do something>
    }
    
  3. or download this
    my $internalNameFlag = 0;
    while (<DATA>) {
    ...
        }
    }