10 lines
112 B
C++
10 lines
112 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
#define EXERCISM_RUN_ALL_TESTS
|
|
|
|
namespace roman {
|
|
|
|
std::string convert(int);
|
|
}
|