summaryrefslogtreecommitdiff
path: root/color_test.c
diff options
context:
space:
mode:
Diffstat (limited to 'color_test.c')
-rw-r--r--color_test.c17
1 files changed, 0 insertions, 17 deletions
diff --git a/color_test.c b/color_test.c
deleted file mode 100644
index 60b0b93..0000000
--- a/color_test.c
+++ /dev/null
@@ -1,17 +0,0 @@
-#include <stdio.h>
-
-int main(){
- printf("\033[0;31m");
- printf("Red\n");
- printf("\033[1;31m");
- printf("Bold Red\n");
- printf("\033[0;32m");
- printf("Green\n");
- printf("\033[1;32m");
- printf("Bold Green\n");
- printf("\033[0;30m");
- printf("\033[47m");
- printf("???\n");
-
- return 0;
-}