blob: f7e3b7fffedc2a5cf06a6b92c8e43f76cdab617b (
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 <libprint/print.hxx>
using namespace std;
namespace hello
{
void
say_formatted (const string& m)
{
print (m);
}
}
|