summaryrefslogtreecommitdiff
path: root/example/help.zig
blob: d90373a3c01a87f7be0473cd13b52bc4e7d5b85c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
const clap = @import("clap");
const std = @import("std");

pub fn main() !void {
    // clap.help is a function that can print a simple help message, given a
    // slice of Param(Help). There is also a helpEx, which can print a
    // help message for any Param, but it is more verbose to call.
    try clap.help(
        std.io.getStdErr().writer(),
        comptime &.{
            clap.parseParam("-h, --help     Display this help and exit.         ") catch unreachable,
            clap.parseParam("-v, --version  Output version information and exit.") catch unreachable,
        },
    );
}