/*
* Copyright (c) Radim Kolar 2013, 2018, 2023.
* SPDX-License-Identifier: MIT
*
* getopt3 library is licensed under MIT license:
* https://spdx.org/licenses/MIT.html
*/
use ;
/**
Example how to use getopt3 crate in your program.
Function parses command line arguments using hardcoded option string
and returns *getopt* struct. Panics on parse error which should not
happen because our option string is valid.
### Arguments
* args Command line options to parse
*/