diff options
Diffstat (limited to 'README.md')
| -rw-r--r-- | README.md | 3 |
1 files changed, 2 insertions, 1 deletions
| @@ -13,4 +13,5 @@ See [example](example.zig). | |||
| 13 | * Chaining `-abc` where `a` and `b` does not take values. | 13 | * Chaining `-abc` where `a` and `b` does not take values. |
| 14 | * Long arguments `--long` | 14 | * Long arguments `--long` |
| 15 | * Supports both passing values using spacing and `=` (`-a 100`, `-a=100`) | 15 | * Supports both passing values using spacing and `=` (`-a 100`, `-a=100`) |
| 16 | * Both work with chaining (`-ba 100`, `-ba=100`) | 16 | * Short args also support passing values with no spacing or `=` (`-a100`) |
| 17 | * This all works with chaining (`-ba 100`, `-ba=100`, `-ba100`) | ||