blob: 65d0aa72310d011e0059044c9321f240ec9d0db7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
// file: hello/hello.cxx -*- C++ -*-
#include <hello/hello>
#include <iostream>
using namespace std;
namespace hello
{
void
say (const string& n)
{
cout << "Hello, " << n << '!' << endl;
}
}
|