// 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; } }