Updated README.md

This commit is contained in:
TheDarkBug 2021-01-18 23:52:21 +01:00
parent 10e28384ba
commit 1baa5f0a6a
2 changed files with 0 additions and 18 deletions

BIN
test

Binary file not shown.

18
test.c
View file

@ -1,18 +0,0 @@
#include <stdio.h>
#define NORMAL "\x1b[0m"
#define BOLD "\x1b[1m"
#define BLACK "\x1b[30m"
#define RED "\x1b[31m"
#define GREEN "\x1b[32m"
#define YELLOW "\x1b[33m"
#define BLUE "\x1b[34m"
#define MAGENTA "\x1b[35m"
#define CYAN "\x1b[36m"
#define WHITE "\x1b[37m"
//NORMAL, BOLD, BLACK, RED, GREEN, YELLOW, BLUE, MAGENTA, CYAN, WHITE
int main() {
printf("%sA%sA%sA%sA%sA%sA%sA%sA%sA%sA\n", NORMAL, BOLD, BLACK, RED, GREEN, YELLOW, BLUE, MAGENTA, CYAN, WHITE);
return 0;
}