aboutsummaryrefslogtreecommitdiff
path: root/args.hxx
diff options
context:
space:
mode:
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!";
+ }
+}