From 58e44f2cdad782fd9c5cf177c2bb1ca8a86c0e15 Mon Sep 17 00:00:00 2001 From: Karen Arutyunov Date: Mon, 19 Jun 2017 18:39:08 +0300 Subject: Move project into intermediate sub-directory --- libhello/libhello/hello.cxx | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 libhello/libhello/hello.cxx (limited to 'libhello/libhello/hello.cxx') diff --git a/libhello/libhello/hello.cxx b/libhello/libhello/hello.cxx new file mode 100644 index 0000000..677815d --- /dev/null +++ b/libhello/libhello/hello.cxx @@ -0,0 +1,16 @@ +// file: libhello/hello.cxx -*- C++ -*- + +#include + +#include + +using namespace std; + +namespace hello +{ + void + say (const string& n) + { + cout << "Hello, " << n << '!' << endl; + } +} -- cgit v1.1