+ 5
Shape [C++]
Can I make a colored shape in C++?
1 Resposta
+ 3
You can actually print colored text on Linux with no extra libraries. Just print out the escape characters. I'm doing this from memory so it might be wrong, so check Google too:
cout << "\033[1;31mHello World";