Newer
Older
exercism-cpp / hello-world / hello_world.cpp
#include "hello_world.h"

using namespace std;

namespace hello_world {

string hello() { return "Hello, World!"; }

}  // namespace hello_world