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