summaryrefslogtreecommitdiff
path: root/color_test.c
diff options
context:
space:
mode:
authorloshprung <lshprung@scu.edu>2020-01-08 12:32:26 -0800
committerloshprung <lshprung@scu.edu>2020-01-08 12:32:26 -0800
commit13cb458c7b5338b386d6a95f12b20f40f876b443 (patch)
tree4072e43a10d9b6bd3ec6890024aada74fe668020 /color_test.c
parentff6bd0501b044298c03ca463fc69234381414ee3 (diff)
deleted unnecesary files
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;
-}