summaryrefslogtreecommitdiff
path: root/libhello/libhello/hello.cxx
blob: ee5c55568b52761b07a8de3db6408a0044a51187 (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::to_stdout (m);
  }
}