// file: hello/hello.cxx -*- C++ -*- #include #include using namespace std; namespace hello { void say (const string& n) { cout << "Hello, " << n << '!' << endl; } }