summaryrefslogtreecommitdiff
path: root/libhello/hello.cxx
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2017-04-29 16:20:50 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2017-04-29 16:20:50 +0300
commit3dc9c1698aa18be1f5a0c67a70a4e6cd655a3da4 (patch)
treefd519a6fe244aee44f5e6103015385852aedd195 /libhello/hello.cxx
parenta9135c795451b594b904f11c62e1fe71c6ec9c85 (diff)
Add hxx extension for headers and lib prefix for library dirs
Diffstat (limited to 'libhello/hello.cxx')
-rw-r--r--libhello/hello.cxx16
1 files changed, 16 insertions, 0 deletions
diff --git a/libhello/hello.cxx b/libhello/hello.cxx
new file mode 100644
index 0000000..f7e3b7f
--- /dev/null
+++ b/libhello/hello.cxx
@@ -0,0 +1,16 @@
+// file: libhello/hello.cxx -*- C++ -*-
+
+#include <libhello/hello.hxx>
+
+#include <libprint/print.hxx>
+
+using namespace std;
+
+namespace hello
+{
+ void
+ say_formatted (const string& m)
+ {
+ print (m);
+ }
+}