kicad/thirdparty/argparse/samples/positional_argument.cpp

31 lines
719 B
C++
Raw Normal View History

2022-11-13 16:50:27 +00:00
// SPDX-License-Identifier: MIT
#include <argparse/argparse.hpp>
int main(int argc, char *argv[]) {
argparse::ArgumentParser program("main");
program.add_argument("square")
.help("display the square of a given number")
.scan<'i', int>();
2023-12-18 02:29:05 +00:00
program.add_argument("--verbose").flag();
try {
program.parse_args(argc, argv);
2023-12-18 02:29:05 +00:00
} catch (const std::exception &err) {
std::cerr << err.what() << std::endl;
std::cerr << program;
return 1;
}
int input = program.get<int>("square");
if (program["--verbose"] == true) {
std::cout << "The square of " << input << " is " << (input * input)
<< std::endl;
} else {
std::cout << (input * input) << std::endl;
}
}