const clap = @import("clap"); const std = @import("std"); pub fn main() !void { // 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( 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, clap.parseParam(" --value Output version information and exit.") catch unreachable, }, ); }