Kotlin argparser
Easy to use and concise yet powerful and robust command line argument
This is a library for parsing command-line arguments. It can parse both options and positional arguments. It aims to be easy to use and concise yet powerful and robust. An instance of MyArgs will represent the set of parsed arguments. Each option and positional argument is declared as a property that delegates through a delegate factory method on an instance of ArgParser. The name of an option is inferred from the name of the property it is bound to. The options above are named -v, --name...