v/vlib/v/tests/inout/cli_root_default_help.vv

9 lines
113 B
V

import cli {Command}
import os
fn main() {
mut cmd := Command {}
cmd.disable_man = true
cmd.parse(os.args)
}