summaryrefslogtreecommitdiff
path: root/libmhello/libmhello/hello.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'libmhello/libmhello/hello.cxx')
-rw-r--r--libmhello/libmhello/hello.cxx20
1 files changed, 20 insertions, 0 deletions
diff --git a/libmhello/libmhello/hello.cxx b/libmhello/libmhello/hello.cxx
new file mode 100644
index 0000000..c94f921
--- /dev/null
+++ b/libmhello/libmhello/hello.cxx
@@ -0,0 +1,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);
+ }
+}