1
0
mirror of https://github.com/CLIUtils/CLI11.git synced 2025-05-01 13:13:53 +00:00
CLI11/book/code/simplest.cpp
2019-09-06 14:25:27 -04:00

12 lines
161 B
C++

#include "CLI11.hpp"
int main(int argc, char **argv) {
CLI::App app;
// Add new options/flags here
CLI11_PARSE(app, argc, argv);
return 0;
}