blob: 25e1a34132a6b5f53498cc21a066e08f6ab5563b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
const std = @import("std");
const clap = @import("clap");
pub fn main() !void {
const stderr = std.io.getStdErr().outStream();
// clap.usage is a function that can print a simple usage message, given a
// slice of Param(Help). There is also a usageEx, which can print a
// usage message for any Param, but it is more verbose to call.
try clap.usage(
stderr,
comptime &[_]clap.Param(clap.Help){
clap.parseParam("-h, --help Display this help and exit. ") catch unreachable,
clap.parseParam("-v, --version Output version information and exit.") catch unreachable,
clap.parseParam(" --value <N> Output version information and exit.") catch unreachable,
},
);
}
|