Calls handler if user specified command subcommand.
auto a = new Program() .add(new Command("test")) .parse(args); a.on("test", (a) { writeln("Test!"); });
See Implementation
Calls handler if user specified command subcommand.