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

#include <hello/hello>

#include <format/format>
#include <print/print>

using namespace std;

namespace hello
{
  void
  say (const string& n)
  {
    print (format ("Hello", n));
  }
}