mirror of
https://github.com/vlang/v.git
synced 2025-09-14 15:02:33 +03:00
11 lines
177 B
V
11 lines
177 B
V
import cli { Command, CommandFlag }
|
|
|
|
fn main() {
|
|
mut cmd := Command{
|
|
name: 'foo'
|
|
defaults: struct {
|
|
help: CommandFlag{false, true}
|
|
}
|
|
}
|
|
cmd.parse(['foo', '-help'])
|
|
}
|