say: in progress

This commit is contained in:
Dmitry Kokorin 2016-04-08 11:10:57 +03:00
parent 75a9e236e2
commit 41ab570e93
2 changed files with 98 additions and 0 deletions

13
cpp/say/say.h Normal file
View file

@ -0,0 +1,13 @@
#pragma once
#define EXERCISM_RUN_ALL_TESTS
#include <string>
namespace say {
typedef unsigned long long number_t;
std::string in_english(number_t number);
}