diff options
Diffstat (limited to 'example')
| -rw-r--r-- | example/comptime-clap.zig | 4 | ||||
| -rw-r--r-- | example/simple.zig | 4 |
2 files changed, 2 insertions, 6 deletions
diff --git a/example/comptime-clap.zig b/example/comptime-clap.zig index 530c7e6..e5d02ff 100644 --- a/example/comptime-clap.zig +++ b/example/comptime-clap.zig | |||
| @@ -12,9 +12,7 @@ pub fn main() !void { | |||
| 12 | clap.parseParam("-h, --help Display this help and exit. ") catch unreachable, | 12 | clap.parseParam("-h, --help Display this help and exit. ") catch unreachable, |
| 13 | clap.parseParam("-n, --number <NUM> An option parameter, which takes a value.") catch unreachable, | 13 | clap.parseParam("-n, --number <NUM> An option parameter, which takes a value.") catch unreachable, |
| 14 | clap.parseParam("-s, --string <STR>... An option parameter which can be specified multiple times.") catch unreachable, | 14 | clap.parseParam("-s, --string <STR>... An option parameter which can be specified multiple times.") catch unreachable, |
| 15 | clap.Param(clap.Help){ | 15 | clap.parseParam("<POS>...") catch unreachable, |
| 16 | .takes_value = .One, | ||
| 17 | }, | ||
| 18 | }; | 16 | }; |
| 19 | const Clap = clap.ComptimeClap(clap.Help, clap.args.OsIterator, ¶ms); | 17 | const Clap = clap.ComptimeClap(clap.Help, clap.args.OsIterator, ¶ms); |
| 20 | 18 | ||
diff --git a/example/simple.zig b/example/simple.zig index f7b5953..270e344 100644 --- a/example/simple.zig +++ b/example/simple.zig | |||
| @@ -10,9 +10,7 @@ pub fn main() !void { | |||
| 10 | clap.parseParam("-h, --help Display this help and exit. ") catch unreachable, | 10 | clap.parseParam("-h, --help Display this help and exit. ") catch unreachable, |
| 11 | clap.parseParam("-n, --number <NUM> An option parameter, which takes a value.") catch unreachable, | 11 | clap.parseParam("-n, --number <NUM> An option parameter, which takes a value.") catch unreachable, |
| 12 | clap.parseParam("-s, --string <STR>... An option parameter which can be specified multiple times.") catch unreachable, | 12 | clap.parseParam("-s, --string <STR>... An option parameter which can be specified multiple times.") catch unreachable, |
| 13 | clap.Param(clap.Help){ | 13 | clap.parseParam("<POS>...") catch unreachable, |
| 14 | .takes_value = .One, | ||
| 15 | }, | ||
| 16 | }; | 14 | }; |
| 17 | 15 | ||
| 18 | // Initalize our diagnostics, which can be used for reporting useful errors. | 16 | // Initalize our diagnostics, which can be used for reporting useful errors. |