ceevlang/test/color_test.cc

8 lines
124 B
C++
Raw Normal View History

#include <ceev/colors.h>
#include <iostream>
int main() {
std::cout << bg_red("Hello World") << std::endl;
return 0;
}