exercism-solutions/cpp/rna-transcription/rna_transcription.h

12 lines
154 B
C++

#pragma once
#define EXERCISM_RUN_ALL_TESTS
#include <string>
namespace transcription {
char to_rna(char);
std::string to_rna(std::string);
}