summaryrefslogtreecommitdiff
path: root/libformat/format.cxx
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2017-04-29 16:18:46 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2017-04-29 16:18:46 +0300
commit823f53f89963bde6e6d57e58348f8242fda2cdd9 (patch)
tree5a762235c727d068c164b9d416784e10303995c4 /libformat/format.cxx
parent1b071f8381cd262c2e800defbb5a1850207d22d2 (diff)
Add hxx extension for headers and lib prefix for library dirs
Diffstat (limited to 'libformat/format.cxx')
-rw-r--r--libformat/format.cxx11
1 files changed, 11 insertions, 0 deletions
diff --git a/libformat/format.cxx b/libformat/format.cxx
new file mode 100644
index 0000000..421f50d
--- /dev/null
+++ b/libformat/format.cxx
@@ -0,0 +1,11 @@
+// file: libformat/format.cxx -*- C++ -*-
+
+#include <libformat/format.hxx>
+
+using namespace std;
+
+string
+format (const string& g, const string& n)
+{
+ return g + ", " + n + '!';
+}