v / vlib / cli / testdata / default_help.vv
10 lines · 9 sloc · 131 bytes · b53012a09b0e1672c803a20fab103ed0a8802d11
Raw
1import cli { Command }
2import os
3
4fn main() {
5 mut cmd := Command{}
6 cmd.defaults = struct {
7 man: false
8 }
9 cmd.parse(os.args)
10}
11