summaryrefslogtreecommitdiff
path: root/libmhello/libmhello/hello.cxx
blob: ff01860a2adba5c69b5f6ea7e66952e84c964f1f (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 std.io;

using namespace std;

namespace hello
{
  void
  say (const string& n)
  {
    cout << "Hello, " << n << '!' << endl;
  }
}