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