diff options
Diffstat (limited to 'README.md')
| -rw-r--r-- | README.md | 2 |
1 files changed, 2 insertions, 0 deletions
| @@ -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 | ||