This project is a feature-lean implementation of a CLI arguments parser.
Just start by creating an instance of ParseArgs and follow the available methods.
E.g.
ParseArgs when = new ParseArgs();
when.argument("-do").spaceValue().call(this::doArgument);
when.argument(null).call(this::defaultArgument);
when.parse(args);