summaryrefslogtreecommitdiff
path: root/hello/hello.cxx
blob: 8fdd5a6d0420f4b9ea4e49dab314c411577a294a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// file: hello/hello.cxx -*- C++ -*-

#include <hello/hello>

#include <print/print>

using namespace std;

namespace hello
{
  void
  say_formatted (const string& m)
  {
    print (m);
  }
}