summaryrefslogtreecommitdiff
path: root/libprint/libprint/print.cxx
blob: 954ba2729a7588723408e5fbbdbfa5fc2e58cfe6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <libprint/print.hxx>

#include <ostream>

using namespace std;

namespace print
{
  void print_hello (ostream& o, const string& h)
  {
    o << h << endl;
  }
}