Comment on Go vs. Rust: Writing a CLI ToolparentComments−dpc_pw6yDoes Go have anything even close to clap/structopt?−alecthomas6yYes, though unlike Rust they use reflection: https://github.com/alecthomas/kong (my own)−dpc_pw6yThanks. Looks good. The reflections don't bother me (that's the way to go with in Go).−saturn_vk6yFor cli apps it doesn't really matter if it's reflection-based
Comments
Does Go have anything even close to clap/structopt?
Yes, though unlike Rust they use reflection: https://github.com/alecthomas/kong (my own)
Thanks. Looks good. The reflections don't bother me (that's the way to go with in Go).
For cli apps it doesn't really matter if it's reflection-based