Help for this page

Select Code to Download


  1. or download this
    # Read patient records from file, one by one
    # parse the data
    # output summary
    
  2. or download this
    my $options = parse_cmd_args();
    my $patient_file = open_patient_file( $options );
    ...
        my $record_hash = parse_record( @record_lines );
        output_results( $result_file, $record_hash );
    }