Notes 20240919201146
Notes 20240919201146
19 8:11 PM
#include <iostream>
#include <string>
int main() {
// ANSI color codes
std::string colors[] = {
"31", // Red
"32", // Green
"33", // Yellow
"34", // Blue
"35", // Magenta
"36", // Cyan
"91", // Light Red
"92", // Light Green
"93", // Light Yellow
"94" // Light Blue
};
return 0;
}