9 lines
146 B
C++
9 lines
146 B
C++
#include "hello_world.h"
|
|
|
|
using namespace std;
|
|
|
|
namespace hello_world {
|
|
|
|
string hello() { return "Goodbye, Mars!"; }
|
|
|
|
} // namespace hello_world
|