summaryrefslogtreecommitdiff
path: root/format/format.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'format/format.cxx')
-rw-r--r--format/format.cxx11
1 files changed, 11 insertions, 0 deletions
diff --git a/format/format.cxx b/format/format.cxx
new file mode 100644
index 0000000..0566e78
--- /dev/null
+++ b/format/format.cxx
@@ -0,0 +1,11 @@
+// file: format/format.cxx -*- C++ -*-
+
+#include <format/format>
+
+using namespace std;
+
+string
+format (const string& g, const string& n)
+{
+ return g + ", " + n + '!';
+}