Help for this page

Select Code to Download


  1. or download this
    open (my $INFILE_1, '<', 'name_o_file.txt') ||
        croak "Cannot open input file: $!\n";
    
  2. or download this
    open(my $CDA1, '<', 'cda1_raw.txt') ||
        croak "Cannot open input file 1: $!\n";
    ...
    
    close $CDA1;
    close $CDA2;
    
  3. or download this
    open(my $CDA1, '<', 'cda1_raw.txt') ||
        croak "Cannot open input file 1: $!\n";
    ...
    close $CDA2;
    close $CDA3;
    close $CDA4;
    
  4. or download this
    sub report_one {
    
    ...
            close $OUT;
            return;
    }