aboutsummaryrefslogtreecommitdiff
path: root/examples/cxx/hello/libhello/libhello/hello.cxx
blob: 4c2f72160fb198c33d317e8d2a0dc27307505f2a (plain)
1
2
3
4
5
6
7
8
9
#include "libhello/hello.hxx"

#include <iostream>

void hello::
say (char const* phrase)
{
  std::cerr << phrase << std::endl;
}