13 lines
164 B
C++
13 lines
164 B
C++
#pragma once
|
|
|
|
#define EXERCISM_RUN_ALL_TESTS
|
|
|
|
#include <string>
|
|
|
|
namespace say {
|
|
|
|
typedef unsigned long long number_t;
|
|
|
|
std::string in_english(number_t number);
|
|
|
|
}
|