exercism-solutions/cpp/say/say.h
2016-04-08 11:10:57 +03:00

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);
}