summaryrefslogtreecommitdiff
path: root/libhello/libhello/hello.cxx
blob: f9e60bd255db12edfc936ea8c370a46b76f7db8b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include <libhello/hello.hxx>

#include <libprint/print.hxx>

using namespace std;

namespace hello
{
  void
  say_hello_formatted (ostream& o, const string& h)
  {
    print::print_hello (o, h);
  }
}