Helper utility for parsing simple commandline arguments.
This is not intended to be a complete commandline parser library. Instead this can be used as an alternative quick-and-dirty approach that can be cheaply incorporated into a tool.
For a more complete commandline parsing library, use [clap].
This is available as a runnable example:
sh cargo run --example basic
```rust
let args = argwerk::argwerk! {
/// A simple test command.
///
/// This is nice!
"testcommand [-h]" {
help: bool,
file: Option
if args.help { return Ok(()); }
Ok(()) ```
License: MIT/Apache-2.0