aboutsummaryrefslogtreecommitdiff
path: root/examples/cxx/hello/libhello/test/driver.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'examples/cxx/hello/libhello/test/driver.cxx')
-rw-r--r--examples/cxx/hello/libhello/test/driver.cxx8
1 files changed, 8 insertions, 0 deletions
diff --git a/examples/cxx/hello/libhello/test/driver.cxx b/examples/cxx/hello/libhello/test/driver.cxx
new file mode 100644
index 0000000..ff25abd
--- /dev/null
+++ b/examples/cxx/hello/libhello/test/driver.cxx
@@ -0,0 +1,8 @@
+#include "libhello/hello.hxx"
+
+int
+main ()
+{
+ hello h;
+ h.say ("Hey, hey, hey!");
+}