summaryrefslogtreecommitdiff
path: root/examples/hello/hello.cli
diff options
context:
space:
mode:
Diffstat (limited to 'examples/hello/hello.cli')
-rw-r--r--examples/hello/hello.cli18
1 files changed, 0 insertions, 18 deletions
diff --git a/examples/hello/hello.cli b/examples/hello/hello.cli
deleted file mode 100644
index b75e1b8..0000000
--- a/examples/hello/hello.cli
+++ /dev/null
@@ -1,18 +0,0 @@
-include <string>;
-
-class options
-{
- bool --help {"Print usage information and exit."};
-
- std::string --greeting = "Hello"
- {
- "<text>",
- "Use <text> as a greeting phrase instead of the default \"Hello\"."
- };
-
- unsigned int --exclamations = 1
- {
- "<num>",
- "Print <num> exclamation marks instead of 1 by default."
- };
-};