epubgrep/dist/termcolor/examples/cmake-fetch/example.cpp

11 lines
291 B
C++
Raw Normal View History

#include <iostream>
#include <termcolor/termcolor.hpp>
int main(int /* argc */, char** /* argv */) {
std::cout
<< termcolor::yellow << "Warm welcome to "
<< termcolor::blue << termcolor::underline << "TERMCOLOR"
<< termcolor::reset << std::endl;
return 0;
}