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

9 lines
146 B
C++

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