aboutsummaryrefslogtreecommitdiff
path: root/args.hxx
diff options
context:
space:
mode:
authorTaylor C. Richberger <Taywee@gmx.com>2016-04-27 15:24:26 -0600
committerTaylor C. Richberger <Taywee@gmx.com>2016-04-27 15:24:26 -0600
commit3b7f35e1910c44bab7d5d4ade6640c9dfd2ba407 (patch)
treecad88385cbd301e5fa9b124c832420199e6d0646 /args.hxx
downloadargs.hxx-3b7f35e1910c44bab7d5d4ade6640c9dfd2ba407.tar.xz
initial buildout
Diffstat (limited to 'args.hxx')
-rw-r--r--args.hxx13
1 files changed, 13 insertions, 0 deletions
diff --git a/args.hxx b/args.hxx
new file mode 100644
index 0000000..9398cac
--- /dev/null
+++ b/args.hxx
@@ -0,0 +1,13 @@
+/* Copyright © 2016 Taylor C. Richberger <taywee@gmx.com>
+ * This code is released under the license described in the LICENSE file
+ */
+
+#include <string>
+
+namespace args
+{
+ std::string hello()
+ {
+ return "Hello, World!";
+ }
+}