exercism/cpp/hello-world/hello_world.cpp

9 lines
144 B
C++

#include "hello_world.h"
using namespace std;
namespace hello_world {
string hello() { return "Hello, World!"; }
} // namespace hello_world