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

module hello;

#ifdef __clang__
import std.core;
#endif

import print;

using namespace std;

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