v/vlib/cli/testdata/default_help.vv

10 lines
131 B
V

import cli { Command }
import os
fn main() {
mut cmd := Command{}
cmd.defaults = struct {
man: false
}
cmd.parse(os.args)
}