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