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