exercism/cpp/hello-world/hello_world.h

13 lines
127 B
C
Raw Normal View History

2017-08-12 14:01:07 +00:00
#if !defined(HELLO_WORLD_H)
#define HELLO_WORLD_H
#include <string>
namespace hello_world {
std::string hello();
}
#endif