import cli { Command, CommandFlag } fn main() { mut cmd := Command{ name: 'foo' defaults: struct { help: CommandFlag{false, true} } } cmd.parse(['foo', '-help']) }