diff options
Diffstat (limited to 'example')
| -rw-r--r-- | example/README.md.template | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/example/README.md.template b/example/README.md.template index 446fd78..7963112 100644 --- a/example/README.md.template +++ b/example/README.md.template | |||
| @@ -10,6 +10,8 @@ A simple and easy to use command line argument parser library for Zig. | |||
| 10 | * Supports both passing values using spacing and `=` (`-a 100`, `-a=100`) | 10 | * Supports both passing values using spacing and `=` (`-a 100`, `-a=100`) |
| 11 | * Short args also support passing values with no spacing or `=` (`-a100`) | 11 | * Short args also support passing values with no spacing or `=` (`-a100`) |
| 12 | * This all works with chaining (`-ba 100`, `-ba=100`, `-ba100`) | 12 | * This all works with chaining (`-ba 100`, `-ba=100`, `-ba100`) |
| 13 | * Print help message from parameter specification. | ||
| 14 | * Parse help message to parameter specification. | ||
| 13 | 15 | ||
| 14 | ## Examples | 16 | ## Examples |
| 15 | 17 | ||