import cli { Command } fn main() { mut cmd := Command{ name: 'cmd' } cmd.add_command( name: 'foo' ) cmd.parse(['', 'cmd', 'foo']) }