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].
See the documentation for [argwerk::parse!] for how to use.
This is available as a runnable example:
sh cargo run --example tour
```rust
let args = argwerk::parse! {
/// A simple test command.
///
/// This is nice!
"testcommand [-h]" {
help: bool,
file: Option
dbg!(args); ```
License: MIT/Apache-2.0