exercism/cpp/hello-world/hello_world.cpp
2025-05-06 16:55:23 +03:00

9 lines
145 B
C++

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