#include "CLI/CLI.hpp" #include int main(int argc, char *argv[]){ CLI::App app{"Just a simple 'hello'"}; CLI11_PARSE(app, argc, argv); std::cout << "Hello World!" << std::endl; return 0; } // vim: set ts=4 expandtab :