summaryrefslogtreecommitdiff
path: root/example/simple-error.zig
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--example/simple-error.zig4
1 files changed, 1 insertions, 3 deletions
diff --git a/example/simple-error.zig b/example/simple-error.zig
index 2c403fc..3c62f0e 100644
--- a/example/simple-error.zig
+++ b/example/simple-error.zig
@@ -2,13 +2,11 @@ const std = @import("std");
2const clap = @import("clap"); 2const clap = @import("clap");
3 3
4pub fn main() !void { 4pub fn main() !void {
5 // First we specify what parameters our program can take.
6 // We can use `parseParam` to parse a string to a `Param(Help)`
7 const params = comptime [_]clap.Param(clap.Help){ 5 const params = comptime [_]clap.Param(clap.Help){
8 clap.parseParam("-h, --help Display this help and exit.") catch unreachable, 6 clap.parseParam("-h, --help Display this help and exit.") catch unreachable,
9 }; 7 };
10 8
11 var args = try clap.parse(clap.Help, &params, std.heap.direct_allocator); 9 var args = try clap.parse(clap.Help, &params, std.heap.direct_allocator, null);
12 defer args.deinit(); 10 defer args.deinit();
13 11
14 _ = args.flag("--helps"); 12 _ = args.flag("--helps");