blob: bba66494cea212f0992e6e21000866baa54cf35f (
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 char* n)
{
cout << "Hello, " << n << '!' << endl;
}
}
|