| 4 | import roman; |
| 5 | |
| 6 | int main() |
| 7 | { |
| 8 | std::cout << "1234 in Roman numerals is " << to_roman(1234) << std::endl; |
| 9 | std::cout << "MMXX in Arabic numerals is " << from_roman("MMXX") << std::endl; |
| 10 | } |
nothing calls this directly
no test coverage detected