aboutsummaryrefslogtreecommitdiff
path: root/examples/m4/libhello/hello/hello.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'examples/m4/libhello/hello/hello.cxx')
-rw-r--r--examples/m4/libhello/hello/hello.cxx9
1 files changed, 9 insertions, 0 deletions
diff --git a/examples/m4/libhello/hello/hello.cxx b/examples/m4/libhello/hello/hello.cxx
new file mode 100644
index 0000000..049e9ce
--- /dev/null
+++ b/examples/m4/libhello/hello/hello.cxx
@@ -0,0 +1,9 @@
+#include <hello/hello.hxx>
+
+#include <iostream>
+
+void hello::
+say (char const* phrase)
+{
+ std::cerr << phrase << std::endl;
+}