• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1```console
2$ 03_03_positional --help
3A simple to use, efficient, and full-featured Command Line Argument Parser
4
5Usage: 03_03_positional[EXE] [name]
6
7Arguments:
8  [name]
9
10Options:
11  -h, --help     Print help
12  -V, --version  Print version
13
14$ 03_03_positional
15name: None
16
17$ 03_03_positional bob
18name: Some("bob")
19
20```
21