Install & Compatibility
Where this runs
No compatibility data collected yet for this library.
Code
Verified usage
Verified import paths — ran on the pinned version, not inferred.
argumentum/argumentum.h
✓ #include <argumentum/argumentum.h>
Parse a command line argument for a name
#include <argumentum/argumentum.h>
#include <iostream>
int main(int argc, char* argv[]) {
auto parser = argumentum::argument_parser{};
std::string name;
parser.config().program("myapp").add_argument("name", name).help("Your name");
parser.parse_args(argc, argv);
std::cout << "Hello, " << name << "!\n";
return 0;
}
Debug
Known issues
No known issues recorded.
Audit
Dependencies
No dependency data recorded yet.
Resources
No resource links recorded.