mirror of
https://codeberg.org/andyscott/exercism.git
synced 2024-11-09 13:20:48 -05:00
9 lines
144 B
C++
9 lines
144 B
C++
#include "hello_world.h"
|
|
|
|
using namespace std;
|
|
|
|
namespace hello_world {
|
|
|
|
string hello() { return "Hello, World!"; }
|
|
|
|
} // namespace hello_world
|