exercism/cpp/hello-world/hello_world.cpp

10 lines
144 B
C++
Raw Normal View History

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